mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 07:10:05 +08:00
13 lines
222 B
VimL
13 lines
222 B
VimL
" we need a clean environment
|
|
|
|
" remove user's .vimrc - what else?
|
|
set runtimepath-=~/.vimrc
|
|
|
|
" add .. as vim-plugin-path (for syntax)
|
|
set runtimepath^=../
|
|
|
|
" nocompat is needed for html-output
|
|
set nocompatible
|
|
|
|
syntax on
|