-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
85 lines (78 loc) · 1.92 KB
/
vimrc
File metadata and controls
85 lines (78 loc) · 1.92 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
set encoding=utf-8
set termencoding=utf-8
set nocompatible
let $VIMHOME = $MYVIMDIR
call plug#begin('$VIMHOME/plugged')
so $VIMHOME/pluginlist.vim
call plug#end()
" ++++++++++++++++++++++++************************
" User
" ++++++++++++++++++++++++************************
let g:tmpl_author_email = 'jan.claussen10@web.de'
let g:tmpl_author_name = 'Jan Claussen'
" ++++++++++++++++++++++++***********************_
" Source large configurations
" ++++++++++++++++++++++++************************
so $VIMHOME/pastes.vim
so $VIMHOME/remaps.vim
so $VIMHOME/autocommands.vim
so $VIMHOME/folds.vim
so $VIMHOME/commands.vim
if has_key(plugs, 'vim-airline')
so $VIMHOME/airlinerc.vim
endif
if has_key(plugs, 'vimspector')
so $VIMHOME/vimspectorrc.vim
endif
if has_key(plugs, 'coc.nvim')
so $VIMHOME/cocrc.vim
endif
if has_key(plugs, 'lsp')
so $VIMHOME/lsp.vim
endif
if has_key(plugs, 'fern.vim')
so $VIMHOME/fernrc.vim
endif
if has_key(plugs, 'vim-cmake')
so $VIMHOME/cmakerc.vim
endif
if has_key(plugs, 'vim-qt')
so $VIMHOME/qt.vim
endif
if has_key(plugs, 'zeavim.vim')
so $VIMHOME/zeavimrc.vim
endif
if has_key(plugs, 'vim-slime')
so $VIMHOME/slimerc.vim
endif
if has_key(plugs, 'rainbow')
so $VIMHOME/rainbowrc.vim
endif
if has_key(plugs, 'git-lens.vim')
so $VIMHOME/git-lens.vim
endif
if has_key(plugs, 'vim-fugitive')
so $VIMHOME/fugitiverc.vim
endif
if has_key(plugs, 'vim-doge')
so $VIMHOME/dogerc.vim
endif
if has_key(plugs, 'fugitive-gitlab.vim') && !empty(glob('$VIMHOME/fugitive-gitlab.vim'))
so $VIMHOME/fugitive-gitlab.vim
endif
if has_key(plugs, 'vim-gitgutter')
so $VIMHOME/gitgutterrc.vim
endif
if has_key(plugs, 'ConflictMotions')
so $VIMHOME/conflictmotions.vim
endif
if has_key(plugs, 'lexima.vim')
so $VIMHOME/leximarc.vim
endif
if has_key(plugs, 'vim-vsnip')
so $VIMHOME/vsniprc.vim
endif
" Always apply these settings last
so $VIMHOME/vim9functions.vim
so $VIMHOME/themeconfig.vim
so $VIMHOME/miscellaneous.vim