Files

23 lines
431 B
VimL
Raw Permalink Normal View History

2018-05-26 19:18:09 +02:00
call plug#begin('~/.vim/plugged')
2018-06-15 19:02:14 +02:00
if has('nvim')
2018-06-16 01:21:55 +02:00
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
2018-06-15 19:02:14 +02:00
else
Plug 'Shougo/deoplete.nvim'
Plug 'roxma/nvim-yarp'
Plug 'roxma/vim-hug-neovim-rpc'
endif
2018-06-16 00:47:36 +02:00
Plug 'Shougo/neosnippet.vim'
Plug 'honza/vim-snippets'
2018-05-26 19:18:09 +02:00
call plug#end()
2018-06-16 00:47:36 +02:00
" Enable snipMate compatibility feature.
let g:neosnippet#enable_snipmate_compatibility = 1
2018-06-15 19:02:14 +02:00
" deoplete
2018-06-16 01:21:55 +02:00
let g:deoplete#enable_at_startup = 1