nvim: Switch back to deoplete

Language client neovim actually works with deoplete as per
the documentation and not ALE.

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
Sanchayan Maity 2019-02-14 14:30:24 +05:30
parent 64c173bd04
commit 0444ac4591

View file

@ -43,8 +43,8 @@ Plug 'autozimu/LanguageClient-neovim', {
\ 'branch': 'next', \ 'branch': 'next',
\ 'do': 'fish install.sh', \ 'do': 'fish install.sh',
\ } \ }
" Asynchronous Lint Engine " For autocompletion
Plug 'w0rp/ale' Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
" Initialize plugin system " Initialize plugin system
call plug#end() call plug#end()
@ -183,9 +183,8 @@ let g:haskell_indent_guard = 2
let g:haskell_indent_case_alternative = 1 let g:haskell_indent_case_alternative = 1
let g:cabal_indent_section = 2 let g:cabal_indent_section = 2
" Use ALE " Use deoplete
let g:ale_completion_enabled=1 let g:deoplete#enable_at_startup = 1
let g:airline#extensions#ale#enabled = 1
let g:airline#extensions#tabline#enabled = 2 let g:airline#extensions#tabline#enabled = 2
let g:airline#extensions#tabline#fnamemod = ':t' let g:airline#extensions#tabline#fnamemod = ':t'