dotman 0.0.3.3 → 0.0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +7 -0
- data/README.md +6 -3
- data/bin/dot +4 -9
- data/lib/dotman.rb +2 -0
- data/lib/dotman/collect.rb +2 -2
- data/lib/dotman/dotfile_collection.rb +10 -4
- data/lib/dotman/git.rb +1 -1
- data/lib/dotman/notification.rb +35 -0
- data/lib/dotman/version.rb +1 -1
- data/spec/dotman/collect_spec.rb +8 -3
- data/spec/integration/dotfile_collection_integration_spec.rb +29 -1
- data/spec/integration/user_integration_spec.rb +1 -1
- data/spec/spec_helper.rb +23 -2
- metadata +4 -60
- data/spec/data/Timbinous_dotfiles/.bashrc +0 -121
- data/spec/data/Timbinous_dotfiles/.gitignore +0 -5
- data/spec/data/Timbinous_dotfiles/.tmux.conf +0 -15
- data/spec/data/Timbinous_dotfiles/.vim/autoload/pathogen.vim +0 -245
- data/spec/data/Timbinous_dotfiles/.vim/bundle/.gitkeep +0 -0
- data/spec/data/Timbinous_dotfiles/.vim/colors/Black.vim +0 -16
- data/spec/data/Timbinous_dotfiles/.vim/colors/Dark.vim +0 -63
- data/spec/data/Timbinous_dotfiles/.vim/colors/autumnleaf.vim +0 -154
- data/spec/data/Timbinous_dotfiles/.vim/colors/c.vim +0 -32
- data/spec/data/Timbinous_dotfiles/.vim/colors/darkzen.vim +0 -25
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb.vim +0 -13
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb.vim~ +0 -13
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb2.vim +0 -59
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb256.vim +0 -32
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb3.vim +0 -23
- data/spec/data/Timbinous_dotfiles/.vim/colors/grb4.vim +0 -17
- data/spec/data/Timbinous_dotfiles/.vim/colors/grblight.vim +0 -15
- data/spec/data/Timbinous_dotfiles/.vim/colors/grblight.vim~ +0 -14
- data/spec/data/Timbinous_dotfiles/.vim/colors/ir_black.vim +0 -212
- data/spec/data/Timbinous_dotfiles/.vim/colors/moria.vim +0 -227
- data/spec/data/Timbinous_dotfiles/.vim/colors/pyte.vim +0 -92
- data/spec/data/Timbinous_dotfiles/.vim/colors/redstring.vim +0 -26
- data/spec/data/Timbinous_dotfiles/.vim/colors/xterm16.vim +0 -811
- data/spec/data/Timbinous_dotfiles/.vim/spell/en.utf-8.add +0 -5
- data/spec/data/Timbinous_dotfiles/.vim/spell/en.utf-8.add.spl +0 -0
- data/spec/data/Timbinous_dotfiles/.vimrc +0 -70
- data/spec/data/Timbinous_dotfiles/.zshrc +0 -62
- data/spec/data/Timbinous_dotfiles/symlinkify +0 -58
- data/spec/data/Timbinous_dotfiles/tim.zsh-theme +0 -29
@@ -1,15 +0,0 @@
|
|
1
|
-
set-option -g prefix C-a
|
2
|
-
unbind-key C-b
|
3
|
-
bind-key C-a send-prefix
|
4
|
-
set-window-option -g mode-keys vi
|
5
|
-
unbind-key j
|
6
|
-
bind-key j select-pane -D
|
7
|
-
|
8
|
-
unbind-key k
|
9
|
-
bind-key k select-pane -U
|
10
|
-
|
11
|
-
unbind-key h
|
12
|
-
bind-key h select-pane -L
|
13
|
-
|
14
|
-
unbind-key l
|
15
|
-
bind-key l select-pane -R
|
@@ -1,245 +0,0 @@
|
|
1
|
-
" pathogen.vim - path option manipulation
|
2
|
-
" Maintainer: Tim Pope <http://tpo.pe/>
|
3
|
-
" Version: 2.0
|
4
|
-
|
5
|
-
" Install in ~/.vim/autoload (or ~\vimfiles\autoload).
|
6
|
-
"
|
7
|
-
" For management of individually installed plugins in ~/.vim/bundle (or
|
8
|
-
" ~\vimfiles\bundle), adding `call pathogen#infect()` to your .vimrc
|
9
|
-
" prior to `filetype plugin indent on` is the only other setup necessary.
|
10
|
-
"
|
11
|
-
" The API is documented inline below. For maximum ease of reading,
|
12
|
-
" :set foldmethod=marker
|
13
|
-
|
14
|
-
if exists("g:loaded_pathogen") || &cp
|
15
|
-
finish
|
16
|
-
endif
|
17
|
-
let g:loaded_pathogen = 1
|
18
|
-
|
19
|
-
" Point of entry for basic default usage. Give a directory name to invoke
|
20
|
-
" pathogen#runtime_append_all_bundles() (defaults to "bundle"), or a full path
|
21
|
-
" to invoke pathogen#runtime_prepend_subdirectories(). Afterwards,
|
22
|
-
" pathogen#cycle_filetype() is invoked.
|
23
|
-
function! pathogen#infect(...) abort " {{{1
|
24
|
-
let source_path = a:0 ? a:1 : 'bundle'
|
25
|
-
if source_path =~# '[\\/]'
|
26
|
-
call pathogen#runtime_prepend_subdirectories(source_path)
|
27
|
-
else
|
28
|
-
call pathogen#runtime_append_all_bundles(source_path)
|
29
|
-
endif
|
30
|
-
call pathogen#cycle_filetype()
|
31
|
-
endfunction " }}}1
|
32
|
-
|
33
|
-
" Split a path into a list.
|
34
|
-
function! pathogen#split(path) abort " {{{1
|
35
|
-
if type(a:path) == type([]) | return a:path | endif
|
36
|
-
let split = split(a:path,'\\\@<!\%(\\\\\)*\zs,')
|
37
|
-
return map(split,'substitute(v:val,''\\\([\\,]\)'',''\1'',"g")')
|
38
|
-
endfunction " }}}1
|
39
|
-
|
40
|
-
" Convert a list to a path.
|
41
|
-
function! pathogen#join(...) abort " {{{1
|
42
|
-
if type(a:1) == type(1) && a:1
|
43
|
-
let i = 1
|
44
|
-
let space = ' '
|
45
|
-
else
|
46
|
-
let i = 0
|
47
|
-
let space = ''
|
48
|
-
endif
|
49
|
-
let path = ""
|
50
|
-
while i < a:0
|
51
|
-
if type(a:000[i]) == type([])
|
52
|
-
let list = a:000[i]
|
53
|
-
let j = 0
|
54
|
-
while j < len(list)
|
55
|
-
let escaped = substitute(list[j],'[,'.space.']\|\\[\,'.space.']\@=','\\&','g')
|
56
|
-
let path .= ',' . escaped
|
57
|
-
let j += 1
|
58
|
-
endwhile
|
59
|
-
else
|
60
|
-
let path .= "," . a:000[i]
|
61
|
-
endif
|
62
|
-
let i += 1
|
63
|
-
endwhile
|
64
|
-
return substitute(path,'^,','','')
|
65
|
-
endfunction " }}}1
|
66
|
-
|
67
|
-
" Convert a list to a path with escaped spaces for 'path', 'tag', etc.
|
68
|
-
function! pathogen#legacyjoin(...) abort " {{{1
|
69
|
-
return call('pathogen#join',[1] + a:000)
|
70
|
-
endfunction " }}}1
|
71
|
-
|
72
|
-
" Remove duplicates from a list.
|
73
|
-
function! pathogen#uniq(list) abort " {{{1
|
74
|
-
let i = 0
|
75
|
-
let seen = {}
|
76
|
-
while i < len(a:list)
|
77
|
-
if (a:list[i] ==# '' && exists('empty')) || has_key(seen,a:list[i])
|
78
|
-
call remove(a:list,i)
|
79
|
-
elseif a:list[i] ==# ''
|
80
|
-
let i += 1
|
81
|
-
let empty = 1
|
82
|
-
else
|
83
|
-
let seen[a:list[i]] = 1
|
84
|
-
let i += 1
|
85
|
-
endif
|
86
|
-
endwhile
|
87
|
-
return a:list
|
88
|
-
endfunction " }}}1
|
89
|
-
|
90
|
-
" \ on Windows unless shellslash is set, / everywhere else.
|
91
|
-
function! pathogen#separator() abort " {{{1
|
92
|
-
return !exists("+shellslash") || &shellslash ? '/' : '\'
|
93
|
-
endfunction " }}}1
|
94
|
-
|
95
|
-
" Convenience wrapper around glob() which returns a list.
|
96
|
-
function! pathogen#glob(pattern) abort " {{{1
|
97
|
-
let files = split(glob(a:pattern),"\n")
|
98
|
-
return map(files,'substitute(v:val,"[".pathogen#separator()."/]$","","")')
|
99
|
-
endfunction "}}}1
|
100
|
-
|
101
|
-
" Like pathogen#glob(), only limit the results to directories.
|
102
|
-
function! pathogen#glob_directories(pattern) abort " {{{1
|
103
|
-
return filter(pathogen#glob(a:pattern),'isdirectory(v:val)')
|
104
|
-
endfunction "}}}1
|
105
|
-
|
106
|
-
" Turn filetype detection off and back on again if it was already enabled.
|
107
|
-
function! pathogen#cycle_filetype() " {{{1
|
108
|
-
if exists('g:did_load_filetypes')
|
109
|
-
filetype off
|
110
|
-
filetype on
|
111
|
-
endif
|
112
|
-
endfunction " }}}1
|
113
|
-
|
114
|
-
" Checks if a bundle is 'disabled'. A bundle is considered 'disabled' if
|
115
|
-
" its 'basename()' is included in g:pathogen_disabled[]' or ends in a tilde.
|
116
|
-
function! pathogen#is_disabled(path) " {{{1
|
117
|
-
if a:path =~# '\~$'
|
118
|
-
return 1
|
119
|
-
elseif !exists("g:pathogen_disabled")
|
120
|
-
return 0
|
121
|
-
endif
|
122
|
-
let sep = pathogen#separator()
|
123
|
-
return index(g:pathogen_disabled, strpart(a:path, strridx(a:path, sep)+1)) != -1
|
124
|
-
endfunction "}}}1
|
125
|
-
|
126
|
-
" Prepend all subdirectories of path to the rtp, and append all 'after'
|
127
|
-
" directories in those subdirectories.
|
128
|
-
function! pathogen#runtime_prepend_subdirectories(path) " {{{1
|
129
|
-
let sep = pathogen#separator()
|
130
|
-
let before = filter(pathogen#glob_directories(a:path.sep."*"), '!pathogen#is_disabled(v:val)')
|
131
|
-
let after = filter(pathogen#glob_directories(a:path.sep."*".sep."after"), '!pathogen#is_disabled(v:val[0:-7])')
|
132
|
-
let rtp = pathogen#split(&rtp)
|
133
|
-
let path = expand(a:path)
|
134
|
-
call filter(rtp,'v:val[0:strlen(path)-1] !=# path')
|
135
|
-
let &rtp = pathogen#join(pathogen#uniq(before + rtp + after))
|
136
|
-
return &rtp
|
137
|
-
endfunction " }}}1
|
138
|
-
|
139
|
-
" For each directory in rtp, check for a subdirectory named dir. If it
|
140
|
-
" exists, add all subdirectories of that subdirectory to the rtp, immediately
|
141
|
-
" after the original directory. If no argument is given, 'bundle' is used.
|
142
|
-
" Repeated calls with the same arguments are ignored.
|
143
|
-
function! pathogen#runtime_append_all_bundles(...) " {{{1
|
144
|
-
let sep = pathogen#separator()
|
145
|
-
let name = a:0 ? a:1 : 'bundle'
|
146
|
-
if "\n".s:done_bundles =~# "\\M\n".name."\n"
|
147
|
-
return ""
|
148
|
-
endif
|
149
|
-
let s:done_bundles .= name . "\n"
|
150
|
-
let list = []
|
151
|
-
for dir in pathogen#split(&rtp)
|
152
|
-
if dir =~# '\<after$'
|
153
|
-
let list += filter(pathogen#glob_directories(substitute(dir,'after$',name,'').sep.'*[^~]'.sep.'after'), '!pathogen#is_disabled(v:val[0:-7])') + [dir]
|
154
|
-
else
|
155
|
-
let list += [dir] + filter(pathogen#glob_directories(dir.sep.name.sep.'*[^~]'), '!pathogen#is_disabled(v:val)')
|
156
|
-
endif
|
157
|
-
endfor
|
158
|
-
let &rtp = pathogen#join(pathogen#uniq(list))
|
159
|
-
return 1
|
160
|
-
endfunction
|
161
|
-
|
162
|
-
let s:done_bundles = ''
|
163
|
-
" }}}1
|
164
|
-
|
165
|
-
" Invoke :helptags on all non-$VIM doc directories in runtimepath.
|
166
|
-
function! pathogen#helptags() " {{{1
|
167
|
-
let sep = pathogen#separator()
|
168
|
-
for dir in pathogen#split(&rtp)
|
169
|
-
if (dir.sep)[0 : strlen($VIMRUNTIME)] !=# $VIMRUNTIME.sep && filewritable(dir.sep.'doc') == 2 && !empty(filter(split(glob(dir.sep.'doc'.sep.'*'),"\n>"),'!isdirectory(v:val)')) && (!filereadable(dir.sep.'doc'.sep.'tags') || filewritable(dir.sep.'doc'.sep.'tags'))
|
170
|
-
helptags `=dir.'/doc'`
|
171
|
-
endif
|
172
|
-
endfor
|
173
|
-
endfunction " }}}1
|
174
|
-
|
175
|
-
command! -bar Helptags :call pathogen#helptags()
|
176
|
-
|
177
|
-
" Like findfile(), but hardcoded to use the runtimepath.
|
178
|
-
function! pathogen#runtime_findfile(file,count) "{{{1
|
179
|
-
let rtp = pathogen#join(1,pathogen#split(&rtp))
|
180
|
-
return fnamemodify(findfile(a:file,rtp,a:count),':p')
|
181
|
-
endfunction " }}}1
|
182
|
-
|
183
|
-
" Backport of fnameescape().
|
184
|
-
function! pathogen#fnameescape(string) " {{{1
|
185
|
-
if exists('*fnameescape')
|
186
|
-
return fnameescape(a:string)
|
187
|
-
elseif a:string ==# '-'
|
188
|
-
return '\-'
|
189
|
-
else
|
190
|
-
return substitute(escape(a:string," \t\n*?[{`$\\%#'\"|!<"),'^[+>]','\\&','')
|
191
|
-
endif
|
192
|
-
endfunction " }}}1
|
193
|
-
|
194
|
-
function! s:find(count,cmd,file,lcd) " {{{1
|
195
|
-
let rtp = pathogen#join(1,pathogen#split(&runtimepath))
|
196
|
-
let file = pathogen#runtime_findfile(a:file,a:count)
|
197
|
-
if file ==# ''
|
198
|
-
return "echoerr 'E345: Can''t find file \"".a:file."\" in runtimepath'"
|
199
|
-
elseif a:lcd
|
200
|
-
let path = file[0:-strlen(a:file)-2]
|
201
|
-
execute 'lcd `=path`'
|
202
|
-
return a:cmd.' '.pathogen#fnameescape(a:file)
|
203
|
-
else
|
204
|
-
return a:cmd.' '.pathogen#fnameescape(file)
|
205
|
-
endif
|
206
|
-
endfunction " }}}1
|
207
|
-
|
208
|
-
function! s:Findcomplete(A,L,P) " {{{1
|
209
|
-
let sep = pathogen#separator()
|
210
|
-
let cheats = {
|
211
|
-
\'a': 'autoload',
|
212
|
-
\'d': 'doc',
|
213
|
-
\'f': 'ftplugin',
|
214
|
-
\'i': 'indent',
|
215
|
-
\'p': 'plugin',
|
216
|
-
\'s': 'syntax'}
|
217
|
-
if a:A =~# '^\w[\\/]' && has_key(cheats,a:A[0])
|
218
|
-
let request = cheats[a:A[0]].a:A[1:-1]
|
219
|
-
else
|
220
|
-
let request = a:A
|
221
|
-
endif
|
222
|
-
let pattern = substitute(request,'\'.sep,'*'.sep,'g').'*'
|
223
|
-
let found = {}
|
224
|
-
for path in pathogen#split(&runtimepath)
|
225
|
-
let path = expand(path, ':p')
|
226
|
-
let matches = split(glob(path.sep.pattern),"\n")
|
227
|
-
call map(matches,'isdirectory(v:val) ? v:val.sep : v:val')
|
228
|
-
call map(matches,'expand(v:val, ":p")[strlen(path)+1:-1]')
|
229
|
-
for match in matches
|
230
|
-
let found[match] = 1
|
231
|
-
endfor
|
232
|
-
endfor
|
233
|
-
return sort(keys(found))
|
234
|
-
endfunction " }}}1
|
235
|
-
|
236
|
-
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Ve :execute s:find(<count>,'edit<bang>',<q-args>,0)
|
237
|
-
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vedit :execute s:find(<count>,'edit<bang>',<q-args>,0)
|
238
|
-
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vopen :execute s:find(<count>,'edit<bang>',<q-args>,1)
|
239
|
-
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vsplit :execute s:find(<count>,'split',<q-args>,<bang>1)
|
240
|
-
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vvsplit :execute s:find(<count>,'vsplit',<q-args>,<bang>1)
|
241
|
-
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vtabedit :execute s:find(<count>,'tabedit',<q-args>,<bang>1)
|
242
|
-
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vpedit :execute s:find(<count>,'pedit',<q-args>,<bang>1)
|
243
|
-
command! -bar -bang -range=1 -nargs=1 -complete=customlist,s:Findcomplete Vread :execute s:find(<count>,'read',<q-args>,<bang>1)
|
244
|
-
|
245
|
-
" vim:set ft=vim ts=8 sw=2 sts=2:
|
File without changes
|
@@ -1,16 +0,0 @@
|
|
1
|
-
" It's based on:
|
2
|
-
runtime colors/Dark.vim
|
3
|
-
|
4
|
-
let g:colors_name = "Black"
|
5
|
-
|
6
|
-
hi Normal guibg=black guifg=GhostWhite
|
7
|
-
hi NonText guibg=grey10
|
8
|
-
|
9
|
-
" More faded is too similar to blue on LCDs.
|
10
|
-
"hi Identifier guifg=#90CC90
|
11
|
-
hi Identifier guifg=#60CC60
|
12
|
-
|
13
|
-
" Experimental:
|
14
|
-
" Stick with the default for a while...
|
15
|
-
"hi Cursor guibg=red2 guifg=white
|
16
|
-
|
@@ -1,63 +0,0 @@
|
|
1
|
-
"
|
2
|
-
" Restore default colors
|
3
|
-
hi clear
|
4
|
-
set background=dark
|
5
|
-
|
6
|
-
|
7
|
-
if exists("syntax_on")
|
8
|
-
syntax reset
|
9
|
-
endif
|
10
|
-
|
11
|
-
let g:colors_name = "Dark"
|
12
|
-
|
13
|
-
|
14
|
-
hi Normal guibg=grey20 guifg=GhostWhite
|
15
|
-
hi NonText guibg=grey15 guifg=yellow3
|
16
|
-
"hi Cursor guibg=GhostWhite
|
17
|
-
"hi Cursor guibg=red guifg=white
|
18
|
-
hi Cursor guibg=green2 guifg=black
|
19
|
-
|
20
|
-
hi Statement guifg=tan
|
21
|
-
hi Constant guifg=#FF7070
|
22
|
-
hi String guifg=#ffa0a0
|
23
|
-
hi Comment guifg=SkyBlue
|
24
|
-
hi PreProc guifg=orchid2
|
25
|
-
hi Character guifg=Cyan
|
26
|
-
hi Type guifg=orange gui=none
|
27
|
-
hi Special guifg=#DDDD00
|
28
|
-
hi Identifier guifg=#60DD60
|
29
|
-
hi link Function Identifier
|
30
|
-
"hi Function guifg=#ffa0a0
|
31
|
-
|
32
|
-
" Slight tweaks after some time away:
|
33
|
-
hi Type guifg=LightMagenta
|
34
|
-
hi PreProc guifg=orange2
|
35
|
-
|
36
|
-
|
37
|
-
hi link SpecialKey Comment
|
38
|
-
hi link Directory Comment
|
39
|
-
|
40
|
-
"
|
41
|
-
" Colors not part of the original set:
|
42
|
-
"
|
43
|
-
"hi Folded guifg=cyan4 guibg=grey20
|
44
|
-
hi Folded guifg=grey90 guibg=grey45
|
45
|
-
hi Visual gui=reverse guibg=fg guifg=darkolivegreen
|
46
|
-
hi Search guifg=black guibg=LightSkyBlue3 gui=none
|
47
|
-
"hi IncSearch guifg=yellow guibg=LightSkyBlue3 gui=bold
|
48
|
-
hi IncSearch guibg=blue guifg=yellow gui=bold
|
49
|
-
hi WarningMsg guifg=red guibg=GhostWhite gui=bold
|
50
|
-
hi Error guibg=red3
|
51
|
-
|
52
|
-
|
53
|
-
" Here are the original colors:
|
54
|
-
"hi guifg=grey70 gui=bold
|
55
|
-
"hi guifg=#FF7070 gui=bold
|
56
|
-
"hi guifg=green gui=bold
|
57
|
-
"hi guifg=yellow gui=bold
|
58
|
-
"hi guifg=SkyBlue gui=bold
|
59
|
-
"hi guifg=orchid1 gui=bold
|
60
|
-
"hi guifg=Cyan gui=bold
|
61
|
-
"hi guifg=White gui=bold
|
62
|
-
"
|
63
|
-
|
@@ -1,154 +0,0 @@
|
|
1
|
-
" Vim color file
|
2
|
-
" Maintainer: Anders Korte
|
3
|
-
" Last Change: 17 Oct 2004
|
4
|
-
|
5
|
-
" AutumnLeaf color scheme 1.0
|
6
|
-
|
7
|
-
set background=light
|
8
|
-
|
9
|
-
hi clear
|
10
|
-
|
11
|
-
if exists("syntax_on")
|
12
|
-
syntax reset
|
13
|
-
endif
|
14
|
-
|
15
|
-
let colors_name="AutumnLeaf"
|
16
|
-
|
17
|
-
|
18
|
-
" Colors for the User Interface.
|
19
|
-
|
20
|
-
hi Cursor guibg=#aa7733 guifg=#ffeebb gui=bold
|
21
|
-
hi Normal guibg=#fffdfa guifg=black gui=none
|
22
|
-
hi NonText guibg=#eafaea guifg=#000099 gui=bold
|
23
|
-
hi Visual guibg=#fff8cc guifg=black gui=none
|
24
|
-
" hi VisualNOS
|
25
|
-
|
26
|
-
hi Linenr guibg=bg guifg=#999999 gui=none
|
27
|
-
|
28
|
-
" Uncomment these if you use Diff...??
|
29
|
-
" hi DiffText guibg=#cc0000 guifg=white gui=none
|
30
|
-
" hi DiffAdd guibg=#0000cc guifg=white gui=none
|
31
|
-
" hi DiffChange guibg=#990099 guifg=white gui=none
|
32
|
-
" hi DiffDelete guibg=#888888 guifg=#333333 gui=none
|
33
|
-
|
34
|
-
hi Directory guibg=bg guifg=#337700 gui=none
|
35
|
-
|
36
|
-
hi IncSearch guibg=#c8e8ff guifg=black gui=none
|
37
|
-
hi Search guibg=#c8e8ff guifg=black gui=none
|
38
|
-
hi SpecialKey guibg=bg guifg=fg gui=none
|
39
|
-
hi Titled guibg=bg guifg=fg gui=none
|
40
|
-
|
41
|
-
hi ErrorMsg guibg=bg guifg=#cc0000 gui=bold
|
42
|
-
hi ModeMsg guibg=bg guifg=#003399 gui=none
|
43
|
-
hi link MoreMsg ModeMsg
|
44
|
-
hi link Question ModeMsg
|
45
|
-
hi WarningMsg guibg=bg guifg=#cc0000 gui=bold
|
46
|
-
|
47
|
-
hi StatusLine guibg=#ffeebb guifg=black gui=bold
|
48
|
-
hi StatusLineNC guibg=#aa8866 guifg=#f8e8cc gui=none
|
49
|
-
hi VertSplit guibg=#aa8866 guifg=#ffe0bb gui=none
|
50
|
-
|
51
|
-
" hi Folded
|
52
|
-
" hi FoldColumn
|
53
|
-
" hi SignColumn
|
54
|
-
|
55
|
-
|
56
|
-
" Colors for Syntax Highlighting.
|
57
|
-
|
58
|
-
hi Comment guibg=#ddeedd guifg=#002200 gui=none
|
59
|
-
|
60
|
-
hi Constant guibg=bg guifg=#003399 gui=bold
|
61
|
-
hi String guibg=bg guifg=#003399 gui=italic
|
62
|
-
hi Character guibg=bg guifg=#003399 gui=italic
|
63
|
-
hi Number guibg=bg guifg=#003399 gui=bold
|
64
|
-
hi Boolean guibg=bg guifg=#003399 gui=bold
|
65
|
-
hi Float guibg=bg guifg=#003399 gui=bold
|
66
|
-
|
67
|
-
hi Identifier guibg=bg guifg=#003399 gui=none
|
68
|
-
hi Function guibg=bg guifg=#0055aa gui=bold
|
69
|
-
hi Statement guibg=bg guifg=#003399 gui=none
|
70
|
-
|
71
|
-
hi Conditional guibg=bg guifg=#aa7733 gui=bold
|
72
|
-
hi Repeat guibg=bg guifg=#aa5544 gui=bold
|
73
|
-
hi link Label Conditional
|
74
|
-
hi Operator guibg=bg guifg=#aa7733 gui=bold
|
75
|
-
hi link Keyword Statement
|
76
|
-
hi Exception guibg=bg guifg=#228877 gui=bold
|
77
|
-
|
78
|
-
hi PreProc guibg=bg guifg=#aa7733 gui=bold
|
79
|
-
hi Include guibg=bg guifg=#558811 gui=bold
|
80
|
-
hi link Define Include
|
81
|
-
hi link Macro Include
|
82
|
-
hi link PreCondit Include
|
83
|
-
|
84
|
-
hi Type guibg=bg guifg=#007700 gui=bold
|
85
|
-
hi link StorageClass Type
|
86
|
-
hi link Structure Type
|
87
|
-
hi Typedef guibg=bg guifg=#009900 gui=italic
|
88
|
-
|
89
|
-
hi Special guibg=bg guifg=fg gui=none
|
90
|
-
hi SpecialChar guibg=bg guifg=fg gui=bold
|
91
|
-
hi Tag guibg=bg guifg=#003399 gui=bold
|
92
|
-
hi link Delimiter Special
|
93
|
-
hi SpecialComment guibg=#dddddd guifg=#aa0000 gui=none
|
94
|
-
hi link Debug Special
|
95
|
-
|
96
|
-
hi Underlined guibg=bg guifg=blue gui=underline
|
97
|
-
|
98
|
-
hi Title guibg=bg guifg=fg gui=bold
|
99
|
-
hi Ignore guibg=bg guifg=#999999 gui=none
|
100
|
-
hi Error guibg=red guifg=white gui=none
|
101
|
-
hi Todo guibg=bg guifg=#aa0000 gui=none
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
" The same in cterm colors.
|
106
|
-
hi Cursor ctermbg=6 ctermfg=14
|
107
|
-
hi Normal ctermbg=15 ctermfg=0
|
108
|
-
hi NonText ctermbg=10 ctermfg=1
|
109
|
-
hi Visual ctermbg=14 ctermfg=0
|
110
|
-
" hi VisualNOS
|
111
|
-
hi Linenr ctermbg=bg ctermfg=7
|
112
|
-
" hi DiffText ctermbg=4 ctermfg=15
|
113
|
-
" hi DiffAdd ctermbg=1 ctermfg=15
|
114
|
-
" hi DiffChange ctermbg=5 ctermfg=15
|
115
|
-
" hi DiffDelete ctermbg=7 ctermfg=8
|
116
|
-
hi Directory ctermbg=bg ctermfg=2
|
117
|
-
hi IncSearch ctermbg=9 ctermfg=0
|
118
|
-
hi Search ctermbg=9 ctermfg=0
|
119
|
-
hi SpecialKey ctermbg=bg ctermfg=fg
|
120
|
-
hi Titled ctermbg=bg ctermfg=fg
|
121
|
-
hi ErrorMsg ctermbg=bg ctermfg=12
|
122
|
-
hi ModeMsg ctermbg=bg ctermfg=9
|
123
|
-
hi WarningMsg ctermbg=bg ctermfg=12
|
124
|
-
hi StatusLine ctermbg=14 ctermfg=0
|
125
|
-
hi StatusLineNC ctermbg=6 ctermfg=14
|
126
|
-
hi VertSplit ctermbg=6 ctermfg=14
|
127
|
-
" hi Folded
|
128
|
-
" hi FoldColumn
|
129
|
-
" hi SignColumn
|
130
|
-
hi Comment ctermbg=10 ctermfg=2
|
131
|
-
hi Constant ctermbg=bg ctermfg=9
|
132
|
-
hi String ctermbg=bg ctermfg=9 cterm=italic
|
133
|
-
hi Character ctermbg=bg ctermfg=9 cterm=italic
|
134
|
-
hi Number ctermbg=bg ctermfg=9 cterm=bold
|
135
|
-
hi Boolean ctermbg=bg ctermfg=9 cterm=bold
|
136
|
-
hi Float ctermbg=bg ctermfg=9 cterm=bold
|
137
|
-
hi Function ctermbg=bg ctermfg=9 cterm=bold
|
138
|
-
hi Statement ctermbg=bg ctermfg=9 cterm=bold
|
139
|
-
hi Conditional ctermbg=bg ctermfg=6 cterm=bold
|
140
|
-
hi Repeat ctermbg=bg ctermfg=6 cterm=bold
|
141
|
-
hi Operator ctermbg=bg ctermfg=6 cterm=bold
|
142
|
-
hi Exception ctermbg=bg ctermfg=2 cterm=bold
|
143
|
-
hi PreProc ctermbg=bg ctermfg=6
|
144
|
-
hi Include ctermbg=bg ctermfg=2 cterm=bold
|
145
|
-
hi Type ctermbg=bg ctermfg=2 cterm=bold
|
146
|
-
hi Typedef ctermbg=bg ctermfg=2 cterm=italic
|
147
|
-
hi Special ctermbg=bg ctermfg=fg cterm=bold
|
148
|
-
hi Tag ctermbg=bg ctermfg=9 cterm=bold
|
149
|
-
hi SpecialComment ctermbg=7 ctermfg=4
|
150
|
-
hi Underlined ctermbg=bg ctermfg=9 cterm=underline
|
151
|
-
hi Title ctermbg=bg ctermfg=fg cterm=bold
|
152
|
-
hi Ignore ctermbg=bg ctermfg=7
|
153
|
-
hi Error ctermbg=12 ctermfg=15
|
154
|
-
hi Todo ctermbg=bg ctermfg=15
|