blob: 0b19922c4ec532d40130084d808a16f483099a22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
已复制!
if filereadable(expand("/etc/vim/vimrcs/plugs.vim"))
source /etc/vim/vimrcs/plugs.vim
endif
if filereadable(expand("/etc/vim/vimrcs/myset.vim"))
source /etc/vim/vimrcs/myset.vim
endif
if filereadable(expand("/etc/vim/vimrcs/match.vim"))
source /etc/vim/vimrcs/match.vim
endif
if filereadable(expand("/etc/vim/vimrcs/statusline.vim"))
source /etc/vim/vimrcs/statusline.vim
endif
if filereadable(expand("/etc/vim/vimrcs/keybind.vim"))
source /etc/vim/vimrcs/keybind.vim
endif
if filereadable(expand("/etc/vim/vimrcs/codecmd.vim"))
source /etc/vim/vimrcs/codecmd.vim
endif
|