You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
225 B

" If we aren't in nvim, exit
if !has('nvim')
finish
endif
" Make deoplete start at startup
let g:deoplete#enable_at_startup = 1
" Closes the preview window once a completion is done
autocmd CompleteDone * silent! pclose!