]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/colors/jammy.vim
Turn off the blur
[rbdr/dotfiles] / vim / colors / jammy.vim
CommitLineData
0d23b6e5
BB
1" Vim color file inherit from the desrt.vim
2" Maintainer: Jammy Lee<mistapostle@gmail.com>
3" Last Change: $Date: 2008/03/20 19:30:30 $
4" Version: $Id: jammy.vim,v 1.1 2008/03/20 $
5
6" cool help screens
7" :he group-name
8" :he highlight-groups
9" :he cterm-colors
10
11set background=dark
12if version > 580
13 " no guarantees for version 5.8 and below, but this makes it stop
14 " complaining
15 hi clear
16 if exists("syntax_on")
17 syntax reset
18 endif
19endif
20let g:colors_name="jammy"
21
22hi Normal guifg=White guibg=Black
23
24" highlight groups
25hi Cursor guibg=khaki guifg=slategrey
26"hi CursorIM
27"hi Directory
28"hi DiffAdd
29"hi DiffChange
30"hi DiffDelete
31"hi DiffText
32"hi ErrorMsg
33hi String guifg=Skyblue
34hi VertSplit guibg=#c2bfa5 guifg=grey50 gui=none
35hi Folded guibg=grey30 guifg=gold
36hi FoldColumn guibg=grey30 guifg=tan
37hi IncSearch guifg=slategrey guibg=khaki
38"hi LineNr
39hi ModeMsg guifg=goldenrod
40hi MoreMsg guifg=SeaGreen
41hi NonText guifg=LightBlue guibg=black
42hi Question guifg=springgreen
43hi Search guibg=peru guifg=wheat
44hi SpecialKey guifg=yellowgreen
45hi StatusLine guibg=#c2bfa5 guifg=black gui=none
46hi StatusLineNC guibg=#c2bfa5 guifg=grey50 gui=none
47hi Title guifg=indianred
48hi Visual gui=none guibg=grey30
49"hi VisualNOS
50hi WarningMsg guifg=salmon
51"hi WildMenu
52"hi Menu
53"hi Scrollbar
54"hi Tooltip
55
56" syntax highlighting groups
57hi Comment guifg=grey60
58hi Constant guifg=indianred
59
60hi Identifier guifg=palegreen
61"hi Identifier guifg=#D18B2C
62"palegreen
63"hi Statement guifg=khaki
64hi Statement guifg=#E6DB74
65hi PreProc guifg=Skyblue
66hi Type guifg=darkkhaki
67hi Special guifg=navajowhite
68"hi Underlined
69hi Ignore guifg=grey40
70"hi Error
71hi Todo guifg=orangered guibg=yellow2
72
73" color terminal definitions
74hi SpecialKey ctermfg=darkgreen
75hi NonText cterm=bold ctermfg=darkblue
76hi Directory ctermfg=darkcyan
77hi ErrorMsg cterm=bold ctermfg=7 ctermbg=1
78hi IncSearch cterm=NONE ctermfg=yellow ctermbg=green
79hi Search cterm=NONE ctermfg=grey ctermbg=blue
80hi MoreMsg ctermfg=darkgreen
81hi ModeMsg cterm=NONE ctermfg=brown
82hi LineNr ctermfg=3
83hi Question ctermfg=green
84hi StatusLine cterm=bold,reverse
85hi StatusLineNC cterm=reverse
86hi VertSplit cterm=reverse
87hi Title ctermfg=5
88hi Visual cterm=reverse
89hi VisualNOS cterm=bold,underline
90hi WarningMsg ctermfg=1
91hi WildMenu ctermfg=0 ctermbg=3
92hi Folded ctermfg=darkgrey ctermbg=NONE
93hi FoldColumn ctermfg=darkgrey ctermbg=NONE
94hi DiffAdd ctermbg=4
95hi DiffChange ctermbg=5
96hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
97hi DiffText cterm=bold ctermbg=1
98hi Comment ctermfg=darkcyan
99hi Constant ctermfg=brown
100hi Special ctermfg=5
101hi Identifier ctermfg=6
102hi Statement ctermfg=3
103hi PreProc ctermfg=5
104hi Type ctermfg=2
105hi Underlined cterm=underline ctermfg=5
106hi Ignore cterm=bold ctermfg=7
107hi Ignore ctermfg=darkgrey
108hi Error cterm=bold ctermfg=7 ctermbg=1
109
110
111"vim: sw=4