-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
.vimrc
62 lines (44 loc) · 1.13 KB
/
.vimrc
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
"==============================================================
" .vimrc
"==============================================================
" Initial Configuration
source ~/.vim/rc/init.vim
if has('nvim')
execute "lua require'init'"
endif
"===============================
" Base Configuration
source ~/.vim/rc/base.vim
if has('nvim')
source ~/.vim/rc/base.nvim
endif
" Layout Settings
source ~/.vim/rc/display.vim
source ~/.vim/rc/statusline.vim
"----------------
" Plugins
source ~/.vim/rc/pluginlist.vim
" Key mapping
source ~/.vim/rc/keyconfig.vim
source ~/.vim/rc/mappings.vim
" Command
source ~/.vim/rc/command.vim
source ~/.vim/rc/autocmd.vim
" Configuration
for f in split(glob('~/.vim/rc/myplugins/*.vim'), '\n')
execute 'source ' . f
endfor
if has('nvim')
for f in split(glob('~/.vim/rc/myplugins/*.nvim'), '\n')
execute 'source ' . f
endfor
endif
" Plugin Settings
source ~/.vim/rc/pluginconfig.vim
"===============================
if exists('g:vscode')
source ~/.vim/rc/vscode-neovim/mappings.vim
endif
"===============================
" Local Configuration
call vimrc#source_safe('~/.vimrc.local')