This repository was archived by the owner on May 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
/
Copy pathcodeburn.vim
203 lines (157 loc) · 5.4 KB
/
codeburn.vim
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "codeburn-0.2"
if version >= 700
" NERDTree current
hi CursorLine guibg=#BFB7AD gui=none
"hi CursorColumn guibg=#e4e2e0
hi MatchParen guibg=black guifg=white gui=none
hi TabLineFill guifg=#BFB39C guibg=#BFB39C
hi TabLine guifg=gray40 guibg=#BFB39C gui=none
hi TabLineSel guifg=gray90 guibg=#AB9876 gui=none
"P-Menu (auto-completion)
hi Pmenu guifg=white guibg=#a4a2a0
"PmenuSel
"PmenuSbar
"PmenuThumb
endif
hi Normal guifg=gray20 guibg=#dcd8d8
hi ModeMsg guifg=gray10 guibg=#B3C71E gui=none
hi MoreMsg guifg=gray10 guibg=#B3C71E gui=none
hi Question guifg=gray10 guibg=#B3C71E gui=none
hi WarningMsg guifg=#600000 gui=none guibg=#dcd8d8
" Html-Titles
hi Title guifg=gray20 gui=none
hi Underlined guifg=gray20 gui=underline
hi Cursor guifg=white guibg=#888480
hi lCursor guifg=black guibg=white
hi LineNr guifg=#B0B1A1
hi StatusLine guifg=gray90 guibg=#888480 gui=none
" not current status line
hi StatusLineNC guifg=gray40 guibg=#ABA7A4 gui=none
hi VertSplit guifg=#ABA7A4 guibg=#ABA7A4 gui=NONE
" unused areas marked with ~
hi NonText gui=none guifg=#dcd8d8
hi Comment guifg=#909090 gui=italic
" ruby: symbols
hi Constant guifg=MediumSlateBlue
hi String guifg=#3366cc
hi String guifg=DodgerBlue
hi link Character String
hi link Number Constant
hi link Float Number
" ruby: debug, mixin, scope, throw, python: def
hi Statement guifg=gray20 gui=none
hi Keyword guifg=#605118 gui=none
" ruby: interpolation
hi Operator gui=none
" HTML: arguments
" Ruby: classname
hi Type gui=none guifg=SaddleBrown
" Python: Standard exceptions, True&False
""hi Structure guifg=Sienna gui=bold,underline
" Ruby: method definitions and calls
hi Identifier guifg=gray10
hi Function guifg=#c2590e
hi Directory guifg=SaddleBrown
" do ..end
hi Repeat guifg=#660000 gui=none
" Ruby: if..else..end
hi Conditional guifg=#990000
" Ruby: require, labels in .vim,
hi PreProc guifg=DarkGoldenrod gui=none
hi Folded guifg=#64634B guibg=#c8c4c0 gui=none
" Ruby: def..end, class..end
""hi Define guifg=#784830
" used by help tags * |
hi Ignore guifg=#A8A890
hi Error guifg=#a02000 guibg=white gui=underline
hi Todo guifg=#6A7164 guibg=NONE gui=underline
" search highlight
hi Search guibg=#ccff66
" Python: %(...)s - constructs, encoding, D: \n etc
" Ruby: ""
hi Special guifg=#808000 gui=none
" color of <TAB>s etc... , NERDTRee
hi SpecialKey guifg=gray60 gui=italic
" visual selection higlight
hi Visual guibg=#ffff00
" string interpolation
hi Delimiter guifg=#666600 gui=bold
" Diff
hi DiffChange guifg=NONE guibg=#e4e2e0 gui=italic
hi DiffText guifg=NONE guibg=#f0e0a0 gui=none
hi DiffAdd guifg=NONE guibg=#c0e0d0 gui=bold
hi DiffDelete guifg=NONE guibg=#f0a0a0 gui=italic,bold
hi link rubyBoolean Boolean
hi link rubyComment Comment
hi link rubyString String
hi link rubyStringDelimiter String
hi link htmlTag Type
hi link htmlEndTag htmlTag
hi link htmlTagName htmlTag
hi link htmlArg Function
hi link hamlHtmlTag htmlTagName
hi link hamlPreDef hamlHtmlTag
hi link hmlHtmlTagEndl hamlHtmlTag
" hi rubyASCIICode
hi rubyAccess guifg=Brown
"hi rubyAttribute guifg=red gui=underline
"hi rubyBlock gui=underline
"hi rubyBlockArgument gui=underline
hi rubyBlockParameter guifg=gray20
hi link rubyClass Type
""hi rubyClassVariable gui=none guifg=#556B2F guibg=white
""hi rubyConstant gui=none guifg=#DC143C guibg=white
" do..end begin rescue end
hi link rubyControl Repeat
"for somre reason begin end in erb is tied to this color instead of Conditional and Control
hi link rubyBeginEnd Repeat
"hi rubyCurlyBlock guifg=#9C420C
"hi rubyData gui= guifg= guibg=
"hi rubyDataDirective gui= guifg= guibg=
hi link rubyDefine Function
"hi rubyDelimEscape
"hi rubyDoBlock guifg=SlateBlue guibg=red
"hi rubyDocumentation gui= guifg= guibg=
"hi rubyError
"hi rubyEscape
"hi rubyEval
hi rubyException guifg=Red
"hi rubyExprSubst gui=underline guifg=#FF4500
"hi rubyFloat
""hi rubyFunction gui=none guifg=#784830
"hi rubyGlobalVariable gui=none guifg=cyan
hi link rubyHeredocStart Comment
hi link rubyHeredocEnd Comment
"hi rubyIdentifier gui=underline
"hi rubyInclude gui= guifg= guibg=
"hi rubyInstanceVariable gui=none guifg=gray20
"hi rubyInteger
"hi rubyInterpolation guifg=Orange
"hi rubyIterator gui=underline guifg=black
hi link rubyKeyword Normal
" hi rubyKeywordAsMethod
""hi rubyLocalVariableOrMethod gui=underline guifg=cyan
hi link rubyModule Type
"hi rubyNestedAngleBrackets
"hi rubyNestedCurlyBraces gui=underline
"hi rubyNestedParentheses
"hi rubyNestedSquareBrackets
"hi rubyNoDoBlock
"hi rubyNoInterpolation
"hi rubyNumber gui= guifg= guibg=
hi link rubyOperator Normal
"hi rubyOptDoBlock gui=underline
"hi rubyOptDoLine
hi rubyPredefinedConstant guifg=gray30
hi rubyPredefinedIdentifier guifg=gray30
hi rubyPredefinedVariable guifg=gray30
"hi rubyPseudoVariable
"hi rubySharpBang gui= guifg= guibg=
"hi rubySpaceError
hi rubySymbol guifg=Purple
"hi rubyTodo gui= guifg= guibg=