]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .vim/colors/less.vim
Initial commit
[dotfiles.git] / .vim / colors / less.vim
1 " vim color file
2 " Maintainer: Brian Nelson <bcnelson@imcglobal.com>
3 " Last Change: $Revision: 1.1 $ $Date: 2003/12/15 17:25:08 $
4 "
5 " Less is More - A minimal color scheme.
6 " Disigned to work equally well on 8 or 16 colors, terminal or gui.
7
8 hi clear
9 set background=dark
10 if exists("syntax_on")
11 syntax reset
12 endif
13 let g:colors_name = "less"
14
15 hi Normal term=none ctermfg=7 ctermbg=0 gui=none guifg=LightGray guibg=black
16 hi Directory term=bold cterm=bold ctermfg=blue guifg=Blue
17 hi Search term=reverse ctermfg=white ctermbg=blue guifg=white guibg=Blue
18 hi MoreMsg term=bold cterm=bold ctermfg=darkgreen gui=bold guifg=DarkGreen
19 hi ModeMsg term=bold cterm=bold gui=bold guifg=White guibg=Blue
20 hi LineNr term=underline cterm=bold ctermfg=darkcyan guifg=DarkCyan
21 hi Question term=standout cterm=bold ctermfg=darkgreen gui=bold guifg=DarkGreen
22 hi Comment term=bold cterm=bold ctermfg=0 gui=none guifg=DarkGray
23 hi Constant term=bold cterm=none ctermfg=7 gui=none guifg=LightGray
24 hi Special term=bold cterm=none ctermfg=3 gui=none guifg=Orange
25 hi Identifier term=none cterm=none ctermfg=7 gui=none guifg=LightGray
26 hi PreProc term=underline cterm=bold ctermfg=7 gui=bold guifg=White
27 hi Error term=reverse cterm=bold ctermfg=7 ctermbg=1 gui=bold guifg=Black guibg=Red
28 hi Todo term=standout cterm=none ctermfg=0 ctermbg=7 guifg=Black guibg=White
29 hi String term=none cterm=none ctermfg=3 gui=none guifg=LightYellow
30 hi Function term=bold cterm=bold ctermfg=3 gui=none guifg=Yellow
31 hi Statement term=bold cterm=bold ctermfg=7 gui=bold guifg=White
32 hi Include term=bold cterm=bold ctermfg=4 gui=none guifg=LightBlue
33 hi StorageClass term=bold cterm=bold ctermfg=5 gui=none guifg=LightMagenta
34 hi Type term=none cterm=none ctermfg=7 gui=none guifg=LightGray
35 hi Defined term=bold cterm=bold ctermfg=6 gui=none guifg=LightCyan
36 hi link Character String
37 hi link Number Constant
38 hi link Boolean Constant
39 hi link Float Number
40 hi link Conditional Statement
41 hi link Repeat Statement
42 hi link Label Statement
43 hi link Operator Statement
44 hi link Keyword Statement
45 hi link Exception Statement
46 hi link Macro Include
47 hi link PreCondit PreProc
48 hi link Structure Type
49 hi link Typedef Type
50 hi link Tag Special
51 hi link SpecialChar Special
52 hi link Delimiter Special
53 hi link SpecialComment Special
54 hi link Debug Special