Add snippets support

This commit is contained in:
2018-06-16 00:47:36 +02:00
parent 282cea9bab
commit a356fa835c
2 changed files with 27 additions and 2 deletions

View File

@@ -73,9 +73,9 @@ nnoremap <silent> <F8> :call LanguageClient#textDocument_rename()<CR>
" deoplete
call deoplete#custom#option('sources',{
\ '_': ['buffer'],
\ 'haskell': ['ultisnips', 'buffer', 'file', 'LanguageClient']
\ 'haskell': ['neosnippet', 'buffer', 'file', 'LanguageClient']
\ })
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
" inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
call deoplete#enable()