dofiles/.config/nvim/init.vim

11 lines
332 B
VimL

" Plugins will be downloaded under the specified directory.
call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')
" Declare the list of plugins.
Plug 'tpope/vim-sensible'
Plug 'junegunn/seoul256.vim'
Plug 'elkowar/yuck.vim'
" List ends here. Plugins become visible to Vim after this call.
call plug#end()