7 lines
164 B
VimL
7 lines
164 B
VimL
" defines plugin directory
|
|
" Install plugins from vim with :PlugInstall
|
|
call plug#begin('~/.local/share/nvim/plugged')
|
|
|
|
Plug 'tpope/vim-sensible'
|
|
|
|
call plug#end()
|