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 pathkate.vim
59 lines (55 loc) · 2.21 KB
/
kate.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
" Vim color file
" Maintainer: Donald Ephraim Curtis <[email protected]>
" Last Change: 09. january 2007.
" URL: http://milkbox.net
" Kate default color themes.
" version 1.1
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="DevC++"
hi Comment gui=italic guifg=#808080 guibg=NONE
hi Identifier gui=NONE guifg=Black guibg=NONE
hi Statement gui=bold guifg=DarkBlue guibg=NONE
hi PreProc gui=NONE guifg=#008000 guibg=NONE
hi Statement gui=bold guifg=Black guibg=NONE
hi Type gui=bold guifg=#800000 guibg=NONE
hi link Constant Type
hi Special gui=NONE guifg=Black guibg=NONE
hi Structure gui=bold guifg=Black guibg=NONE
hi String gui=NONE guifg=#DD0000 guibg=NONE
hi Number gui=NONE guifg=#0000FF guibg=NONE
hi SpecialKey gui=NONE guifg=#0000FF guibg=NONE
hi Float gui=NONE guifg=#800080 guibg=NONE
hi Boolean gui=bold guifg=Black guibg=NONE
hi Gutter gui=NONE guifg=Black guibg=Grey
hi Todo gui=bold guifg=black guibg=#FFCCCC
hi LineNr gui=NONE guifg=Black guibg=#EBE9ED
hi NonText gui=bold guifg=black guibg=#EBE9ED
hi Visual gui=reverse guifg=NONE guibg=NONE
hi MatchParen gui=NONE guifg=Black guibg=#FFFF99
hi Question gui=NONE guifg=DarkGreen guibg=NONE
hi More gui=bold guifg=DarkGreen guibg=NONE
hi StatusLine gui=bold guifg=Black guibg=#EBE9ED
" C/C++ Colors
hi link cIncluded PreProc
hi cOctal gui=NONE guifg=#008080 guibg=NONE
hi cSpecial gui=NONE guifg=#FF00FF guibg=NONE
hi link cSpecialCharacter cSpecial
" Latex Colors
"hi texStatement guifg=#606000
hi link texType Normal
hi link texDocType Type
hi link texDefParm Normal
hi link texInput Normal
hi link texInputFile Normal
hi link texNewCmd texDocType
hi link texSection String
hi link texSectionName SpecialKey
hi link texDelimiter Normal
hi link texRefZone Normal
hi link texMath PreProc
hi link texLigature texMath
hi texStatement gui=NONE guifg=#800000 guibg=NONE