Added vim/nvim pluggin support
This commit is contained in:
parent
48106680a8
commit
00f6823191
|
@ -0,0 +1,18 @@
|
|||
" Install vim-plug if not found
|
||||
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
|
||||
if empty(glob(data_dir . '/autoload/plug.vim'))
|
||||
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
||||
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||||
endif
|
||||
|
||||
" Run PlugInstall if there are missing plugins
|
||||
autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)')) | PlugInstall --sync | source $MYVIMRC | endif
|
||||
|
||||
" 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'
|
||||
|
||||
call plug#end()
|
|
@ -0,0 +1 @@
|
|||
{{ .chezmoi.homeDir }}/.config/nvim/init.vim
|
Loading…
Reference in New Issue