Remove space mapping
[havk_dotfiles.git] / .vim / colors / biogoo.vim
blobcec72b1bfdd4503d9fb41737114cb6285689ef86
1 " Vim color File
2 " Name:                 biogoo
3 " Maintainer:   Benjamin Esham <bdesham@iname.com>
4 " Last Change:  2004-02-03
5 " Version:              1.2
7 " A fairly simple gray-background scheme.  Feedback is greatly appreciated!
9 " Installation:
10 "   Copy to ~/.vim/colors; do :color biogoo
12 " Customization Options:
13 "   Use a 'normal' cursor color:
14 "     let g:biogoo_normal_cursor = 1
16 " Props:
17 "   Jani Nurminen's zenburn.vim as an example file.
18 "   Scott and Matt for feature suggestions.
20 " Version History:
21 "   1.2:   added `SpellErrors' group for use with vimspell.
22 "   1.1:   added `IncSearch' group for improved visibility in incremental searches.
23 "   1.0:   minor tweaks
24 "   0.95:  initial release
26 " TODO: Possibly add some more groups -- please email me if I've left any out.
28 set background=light
29 hi clear
30 if exists("syntax_on")
31         syntax reset
32 endif
33 let g:colors_name = "biogoo"
35 hi Comment                      guifg=#0000c3
36 hi Constant                     guifg=#0000ff
37 hi Delimiter            guifg=#00007f
38 hi DiffAdd                      guifg=#007f00 guibg=#e5e5e5
39 hi DiffChange           guifg=#00007f guibg=#e5e5e5
40 hi DiffDelete           guifg=#7f0000 guibg=#e5e5e5
41 hi DiffText                     guifg=#ee0000 guibg=#e5e5e5
42 hi Directory            guifg=#b85d00
43 hi Error                        guifg=#d6d6d6 guibg=#7f0000
44 hi ErrorMsg                     guifg=#ffffff guibg=#ff0000 gui=bold
45 hi Float                        guifg=#b85d00
46 hi FoldColumn           guifg=#00007f guibg=#e5e5e5
47 hi Folded                       guifg=#00007f guibg=#e5e5e5
48 hi Function                     guifg=#7f0000
49 hi Identifier           guifg=#004000
50 hi Include                      guifg=#295498 gui=bold
51 hi IncSearch            guifg=#ffffff guibg=#0000ff gui=bold
52 hi LineNr                       guifg=#303030 guibg=#e5e5e5 gui=underline
53 hi Keyword                      guifg=#00007f
54 hi Macro                        guifg=#295498
55 hi ModeMsg                      guifg=#00007f
56 hi MoreMsg                      guifg=#00007f
57 hi NonText                      guifg=#007f00
58 hi Normal                       guifg=#000000 guibg=#d6d6d6
59 hi Number                       guifg=#b85d00
60 hi Operator                     guifg=#00007f
61 hi PreCondit            guifg=#295498 gui=bold
62 hi PreProc                      guifg=#0c3b6b gui=bold
63 hi Question                     guifg=#00007f
64 hi Search                       guibg=#ffff00
65 hi Special                      guifg=#007f00
66 hi SpecialKey           guifg=#00007f
67 hi SpellErrors          guifg=#7f0000 gui=underline
68 hi Statement            guifg=#00007f gui=none
69 hi StatusLine           guifg=#00007f guibg=#ffffff
70 hi StatusLineNC         guifg=#676767 guibg=#ffffff
71 hi String                       guifg=#d10000
72 hi Title                        guifg=#404040 gui=bold
73 hi Todo                         guifg=#00007f guibg=#e5e5e5 gui=underline
74 hi Type                         guifg=#540054 gui=bold
75 hi Underlined           guifg=#b85d00
76 hi VertSplit            guifg=#676767 guibg=#ffffff
77 hi Visual                       guifg=#7f7f7f guibg=#ffffff
78 hi VisualNOS            guifg=#007f00 guibg=#e5e5e5
79 hi WarningMsg           guifg=#500000
80 hi WildMenu                     guifg=#540054
82 if !exists("g:biogoo_normal_cursor")
83         " use a gray-on-blue cursor
84         hi Cursor               guifg=#ffffff guibg=#00007f
85 endif