mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 19:23:03 +03:00
fzf
This commit is contained in:
parent
bed50d44db
commit
4bee614548
1 changed files with 30 additions and 2 deletions
|
|
@ -2,9 +2,12 @@ call plug#begin('~/.local/share/nvim/plugged')
|
|||
|
||||
"UI
|
||||
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||
Plug 'jistr/vim-nerdtree-tabs'
|
||||
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'crusoexia/vim-monokai'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'lifepillar/vim-solarized8'
|
||||
|
||||
"Coding
|
||||
Plug 'valloric/youcompleteme'
|
||||
|
|
@ -26,10 +29,18 @@ Plug 'heavenshell/vim-pydocstring'
|
|||
"Other
|
||||
Plug 'https://gitlab.com/code-stats/code-stats-vim.git'
|
||||
Plug 'wakatime/vim-wakatime'
|
||||
Plug 'ctrlpvim/ctrlp.vim'
|
||||
"Plug 'ctrlpvim/ctrlp.vim'
|
||||
Plug 'lervag/vimtex'
|
||||
Plug 'KeitaNakamura/tex-conceal.vim', {'for': 'tex'}
|
||||
Plug 'tikhomirov/vim-glsl'
|
||||
Plug 'scrooloose/syntastic'
|
||||
Plug 'easymotion/vim-easymotion'
|
||||
Plug 'nathanaelkane/vim-indent-guides'
|
||||
Plug 'vim-scripts/restore_view.vim'
|
||||
|
||||
Plug 'raimondi/delimitmate'
|
||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin' }
|
||||
Plug 'junegunn/fzf.vim'
|
||||
|
||||
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
|
|
@ -37,6 +48,7 @@ call plug#end()
|
|||
|
||||
set runtimepath+=~/.config/nvim/my-snippets/
|
||||
let g:codestats_api_key="SFMyNTY.VTNGeWRFMXBiblZ6VDI1bCMjTlRRek1RPT0.V3iEAki_kRH75zwoXQ3u5Zng-Q_h0XRlUsb9ld09Cdc"
|
||||
let $FZF_DEFAULT_COMMAND='fd --type f --exclude .git'
|
||||
|
||||
"LaTeX
|
||||
let g:tex_flavor='latex'
|
||||
|
|
@ -52,6 +64,7 @@ let g:pymode_python = 'python3'
|
|||
let g:pymode_rope = 1
|
||||
let g:pymode_rope_completion = 0
|
||||
let NERDTreeIgnore = ['\.pyc$', '^__pycache__$']
|
||||
let g:syntastic_ignore_files = ['\.py$']
|
||||
|
||||
map <F8> :PymodeRun<CR>
|
||||
au BufNewFile,BufRead *.frag,*.vert,*.fp,*.vp,*.glsl setf glsl
|
||||
|
|
@ -73,6 +86,7 @@ nmap <C-h> <C-W>h
|
|||
nmap <C-j> <C-W>j
|
||||
nmap <C-k> <C-W>k
|
||||
nmap <C-l> <C-W>l
|
||||
nmap <C-p> :Files<CR>
|
||||
|
||||
"Snippets
|
||||
let g:UltiSnipsUsePythonVersion = 3
|
||||
|
|
@ -89,12 +103,26 @@ set smartindent
|
|||
set autoindent
|
||||
set foldmethod=indent
|
||||
set foldlevelstart=1
|
||||
let g:indent_guides_enable_on_vim_startup = 1
|
||||
|
||||
"Syntax
|
||||
set statusline+=%#warningmsg#
|
||||
set statusline+=%{SyntasticStatuslineFlag()}
|
||||
set statusline+=%*
|
||||
|
||||
let g:syntastic_always_populate_loc_list = 1
|
||||
let g:syntastic_auto_loc_list = 1
|
||||
let g:syntastic_check_on_open = 1
|
||||
let g:syntastic_check_on_wq = 0
|
||||
|
||||
|
||||
"spell
|
||||
"set spell spelllang=en,ru
|
||||
|
||||
"ui
|
||||
colorscheme monokai
|
||||
set background=dark
|
||||
colorscheme solarized8
|
||||
let g:solarized_visibility='high'
|
||||
set termguicolors
|
||||
"set guifont=DroidSansMono\ Nerd\ Font\ 11
|
||||
set laststatus=2
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue