1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 07:10:06 +08:00

Add init.vim and vimrc to support vim/neovim

This commit is contained in:
wsdjeg 2016-12-26 20:36:18 +08:00
parent 0c95bd8987
commit 71b387a755
2 changed files with 5 additions and 0 deletions

1
init.vim Normal file
View File

@ -0,0 +1 @@
execute 'source' fnamemodify(expand('<sfile>'), ':h').'/core/main.vim'

4
vimrc Normal file
View File

@ -0,0 +1,4 @@
" Note: Skip initialization for vim-tiny or vim-small.
if 1
execute 'source' fnamemodify(expand('<sfile>'), ':h').'/core/main.vim'
endif