File: desert.vim

package info (click to toggle)
vim-scripts 4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 704 kB
  • ctags: 653
  • sloc: makefile: 25
file content (67 lines) | stat: -rw-r--r-- 1,849 bytes parent folder | download
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
" Vim color file
" Maintainer:   Hans Fugal <hans@fugal.net>
" Last Change:  5 Oct 2001
" URL:			http://fugal.net/vim/colors/desert.vim 

" A theme inspired by my home town of Santa Fe, New Mexico

" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors

set background=dark
hi clear
if exists("syntax_on")
    syntax reset
endif
let g:colors_name="desert"

hi Normal	guifg=White guibg=grey20

" highlight groups
hi Cursor	guibg=khaki guifg=slategrey
"hi CursorIM	
"hi Directory	
"hi DiffAdd		
"hi DiffChange	
"hi DiffDelete	
"hi DiffText	
"hi ErrorMsg	
hi VertSplit	guibg=#c2bfa5 guifg=grey50 gui=none
hi Folded		guibg=grey30 guifg=gold
hi FoldColumn	guibg=grey30 guifg=tan
hi IncSearch	cterm=none ctermbg=blue ctermfg=grey guifg=slategrey guibg=khaki
"hi LineNr		
hi ModeMsg		guifg=goldenrod
hi MoreMsg 		ctermfg=LightGreen guifg=SeaGreen
hi NonText 		ctermfg=LightBlue guifg=LightBlue guibg=grey30
hi Question		guifg=springgreen
hi Search	ctermbg=blue ctermfg=grey guibg=peru guifg=wheat
hi SpecialKey	guifg=springgreen
hi StatusLine	guibg=#c2bfa5 guifg=black gui=none
hi StatusLineNC	guibg=#c2bfa5 guifg=grey50 gui=none
hi Title	guifg=indianred
hi Visual 	cterm=none ctermbg=darkgreen ctermfg=yellow gui=none guifg=khaki guibg=olivedrab
"hi VisualNOS	
hi WarningMsg	guifg=salmon
"hi WildMenu	
"hi Menu		
"hi Scrollbar	
"hi Tooltip		

" syntax highlighting groups
hi Comment 	ctermfg=lightblue guifg=SkyBlue
hi Constant 	ctermfg=darkcyan guifg=#ffa0a0
hi Identifier	ctermfg=darkgreen cterm=none guifg=palegreen
hi Statement	ctermfg=brown guifg=khaki
hi PreProc	ctermfg=darkmagenta guifg=indianred
hi Type		ctermfg=darkgreen guifg=darkkhaki
hi Special	ctermfg=darkmagenta guifg=navajowhite
"hi Underlined	
hi Ignore	guifg=grey40
"hi Error		
hi Todo		ctermfg=darkred ctermbg=yellow guifg=orangered guibg=yellow2


"vim: ts=4