-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cvim.vim
More file actions
149 lines (106 loc) · 3.17 KB
/
.cvim.vim
File metadata and controls
149 lines (106 loc) · 3.17 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""" Head: Note
""
" copy this file to ~/.cvim.vim
" $ cp ./.cvim.vim ~/.cvim.vim
" and edit it for your self.
""
""" Tail: Note
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""" Head: Option
""
" ## Disable Fcitx
"let g:the_pack_disable['Fcitx'] = 1
" ## Disable Edit_BetterWhitespace
"let g:the_pack_disable['Edit_BetterWhitespace'] = 1
" ## Disable EleLine
"let g:the_pack_disable['EleLine'] = 1
" ## Disable WhichKey
"let g:the_pack_disable['WhichKey'] = 1
" ## Disable NerdTree
"let g:the_pack_disable['NerdTree'] = 1
" ## Disable Fm_Ranger
"let g:the_pack_disable['Fm_Ranger'] = 1
" ## Disable Fm_Lf
"let g:the_pack_disable['Fm_Lf'] = 1
" ## Disable Clap
"let g:the_pack_disable['Clap'] = 1
" ## Disable Coc
"let g:the_pack_disable['Coc'] = 1
" ## Disable Coc
"let g:the_pack_disable['Coding_Honza_VimSnippets'] = 1
" ## Disable Vista
"let g:the_pack_disable['Vista'] = 1
""
""" Tail: Option
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""" Head: UserColorScheme
""
function! UserColorScheme_Plug () abort
"echomsg '~/.cvim.vim::UserColorScheme_Plug'
"" Add Extra ColorScheme Plugin
"" Ex:
"" ## https://github.com/dracula/vim
"Plug 'dracula/vim'
endfunction
function! UserColorScheme_Conf () abort
"echomsg '~/.cvim.vim::UserColorScheme_Conf'
" ## ColorScheme
" ## background
set background=dark
"set background=light
" ## pick colorscheme
"colorscheme gruvbox
"colorscheme monokai
"colorscheme onedark
colorscheme space_vim_theme
"colorscheme dracula
"colorscheme seoul256
"colorscheme seoul256-light
"colorscheme dracula
" ## ubuntu default colorscheme
" $ dpkg -L vim-runtime | grep colors
" $ ls /usr/share/vim/vim80/colors/ -1
" $ ls /usr/share/vim/vim80/colors/ -1 | grep '\.vim' | awk -F '.' '{print $1}'
" $ ls /usr/share/vim/vim80/colors/ -1 | grep '\.vim' | awk -F '.' '{print "\"colorscheme", $1}'
"colorscheme blue
"colorscheme darkblue
"colorscheme default
"colorscheme delek
"colorscheme desert
"colorscheme elflord
"colorscheme evening
"colorscheme industry
"colorscheme koehler
"colorscheme morning
"colorscheme murphy
"colorscheme pablo " *
"colorscheme peachpuff " *
"colorscheme ron
"colorscheme shine
"colorscheme slate " *
"colorscheme torte
"colorscheme zellner
endfunction
""
""" Tail: UserColorScheme
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
""" Head: UserEnhance
""
function! UserEnhance_Plug () abort
"echomsg '~/.cvim.vim::UserEnhance_Plug'
"" ## Add Extra Plugin
"" Ex:
"" ## https://github.com/some_user/some_plug
"Plug 'some_user/some_plug'
endfunction
function! UserEnhance_Conf () abort
"echomsg '~/.cvim.vim::UserEnhance_Conf'
"" ## Add Extra Config
endfunction
""
""" Tail: UserEnhance
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""