Add vimrc and ~/.config/vim dir for non nvim support
This commit is contained in:
parent
782d0dbe26
commit
ce04912dc5
6 changed files with 55 additions and 0 deletions
11
_src.posix/dot_vimrc
Normal file
11
_src.posix/dot_vimrc
Normal file
|
@ -0,0 +1,11 @@
|
|||
if has('nvim')
|
||||
" Neovim-specific settings
|
||||
set runtimepath+=~/.config/nvim
|
||||
lua require('_init')
|
||||
else
|
||||
" Vim-specific settings
|
||||
set runtimepath+=~/.config/vim
|
||||
source ~/.config/vim/_init
|
||||
endif
|
||||
|
||||
" vim: set ft=vim sw=4 sts=4 et:
|
Loading…
Add table
Add a link
Reference in a new issue