mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 07:30:05 +08:00
10 lines
172 B
VimL
Vendored
10 lines
172 B
VimL
Vendored
set nocompatible
|
|
let s:path = expand('<sfile>:p:h:h')
|
|
set runtimepath=$VIMRUNTIME
|
|
call execute('set rtp+=' . s:path)
|
|
filetype off
|
|
filetype plugin indent on
|
|
syntax enable
|
|
|
|
|