]> git.r.bdr.sh - rbdr/dotfiles/blob - vim/colors/settlemyer.vim
Add vim again :)
[rbdr/dotfiles] / vim / colors / settlemyer.vim
1 " Vim color file
2 " Maintainer: Max Lynch <lynch3@wisc.edu>
3 " URL: http://muffinpeddler.com
4 " Version: 0.1
5 "
6 " :he group-name
7 " :he highlight-groups
8 " :he cterm-colors
9
10 set background=dark
11 if version > 580
12 " no guarantees for version 5.8 and below, but this makes it stop
13 " complaining
14 hi clear
15 if exists("syntax_on")
16 syntax reset
17 endif
18 endif
19 let g:colors_name="settlemyer"
20
21 hi Normal guibg=gray25 guifg=gray85
22 hi Cursor guibg=red3 guifg=bg
23
24 " Syntax Highlighting
25 hi Comment guifg=LightPink
26 hi Constant guifg=SpringGreen
27 " hi Identifier gui=bold guifg=SkyBlue
28 " hi Function guifg=Wheat3
29 " hi Type guifg=orange1
30 hi Keyword guifg=SkyBlue
31 hi PreProc guifg=SkyBlue
32 hi Statement guifg=SkyBlue
33 hi Type gui=bold guifg=SkyBlue
34 hi NonText guifg=DarkGray
35 hi Tags guifg=orange1
36
37 hi link Character Constant
38 hi link Number Constant
39 hi link Float Constant
40 hi link Function Statement
41 hi link Conditional Statement
42 hi link Repeat Statement
43 hi link Label Statement
44 hi link Operator Statement
45 hi link Keyword Statement
46 hi link Include PreProc
47 hi link Define PreProc
48 hi link Macro PreProc
49 hi link PreCondit PreProc
50 hi link StorageClass Type
51 hi link Structure Type
52 hi link Typedef Type
53 hi link Tag Tags