-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_noplugin_vimrc
executable file
·58 lines (52 loc) · 2.18 KB
/
_noplugin_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
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Pre "
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Pre {{{
redir @t
execute 'silent pwd'
redir END
execute 'silent lcd ' . expand('<sfile>:h')
source common/_vimrc_start.vim
"}}}
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Functions "
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
source common/functions.vim
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Settings "
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Settings {{{
source common/settings-encoding.vim
source common/settings-history_backup_undo.vim
source common/settings-filetype.vim
source common/settings-editing.vim
source common/settings-fold_indent.vim
source common/settings-completion.vim
source common/settings-guioptions.vim
source common/settings-search.vim
source common/settings-wild.vim
source common/settings-terminal.vim
source common/settings-display.vim
" }}}
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Auto Commands and Commands "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Command and Auto Commands {{{
source common/commands.vim
source common/autocommands.vim
" }}}
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Mappings "
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Mappings {{{
source common/mappings-mswin.vim
source common/mappings-general.vim
" }}}
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Post "
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Post {{{
source common/_vimrc_end.vim
execute 'silent lcd ' . trim(@t)
"}}}
" vim: fdm=marker