refactor(nvim): remove unused plugins
This commit is contained in:
parent
02d7bfe14b
commit
4c5bb2333f
1 changed files with 0 additions and 16 deletions
|
@ -6,8 +6,6 @@ Plug 'vim-airline/vim-airline-themes'
|
|||
Plug 'airblade/vim-gitgutter'
|
||||
Plug 'chrisbra/sudoedit.vim'
|
||||
Plug 'vim-syntastic/syntastic'
|
||||
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
||||
Plug 'carlitux/deoplete-ternjs', { 'do': 'npm install -g tern' }
|
||||
Plug 'mtscout6/syntastic-local-eslint.vim'
|
||||
|
||||
call plug#end()
|
||||
|
@ -73,20 +71,6 @@ let g:syntastic_php_checkers = ['php', 'phpcs']
|
|||
let g:syntastic_mode_map = { 'mode': 'active', 'passive_filetypes': ['go'] }
|
||||
let g:syntastic_rust_checkers = ['rustc']
|
||||
|
||||
" deoplete
|
||||
let g:deoplete#enable_at_startup = 1
|
||||
let g:tern_request_timeout = 1
|
||||
let g:tern_show_signature_in_pum = '0'
|
||||
set completeopt+=noinsert
|
||||
set completeopt+=noselect
|
||||
set completeopt-=preview
|
||||
" deoplete tab-complete
|
||||
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
|
||||
let g:deoplete#omni#functions = {}
|
||||
let g:deoplete#omni#functions.javascript = [
|
||||
\ 'tern#Complete'
|
||||
\]
|
||||
|
||||
" python host paths
|
||||
let g:python_host_prog = '/usr/bin/python2'
|
||||
let g:python3_host_prog = '/usr/bin/python3'
|
||||
|
|
Loading…
Reference in a new issue