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
1 changed files with 4 additions and 5 deletions

View File

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