aboutsummaryrefslogtreecommitdiff
path: root/colors
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-01-24 21:00:45 +1300
committerTom Ryder <tom@sanctum.geek.nz>2012-01-24 21:00:45 +1300
commite1c3ce05e22ce6b973cf9cad5b2245f16a21f962 (patch)
treeece57b55bd3b1c78ece2c6ebac2857999b44c9ba /colors
parentAdded background colors, thanks desimusxvii (diff)
downloadvim-sahara-e1c3ce05e22ce6b973cf9cad5b2245f16a21f962.tar.gz
vim-sahara-e1c3ce05e22ce6b973cf9cad5b2245f16a21f962.zip
More file-specific tweaks.
Signed-off-by: Tom Ryder <tom@sanctum.geek.nz>
Diffstat (limited to 'colors')
-rw-r--r--colors/sahara.vim18
1 files changed, 16 insertions, 2 deletions
diff --git a/colors/sahara.vim b/colors/sahara.vim
index 18ec902..a3c6517 100644
--- a/colors/sahara.vim
+++ b/colors/sahara.vim
@@ -21,6 +21,10 @@ let g:colors_name="sahara"
" Highlighting definitions.
"
if has("gui_running") || &t_Co == 256
+
+ "
+ " Actual colours and styles.
+ "
highlight Comment term=NONE cterm=NONE ctermfg=110 ctermbg=NONE gui=NONE guifg=#87afd7 guibg=NONE
highlight Constant term=NONE cterm=NONE ctermfg=217 ctermbg=NONE gui=NONE guifg=#ffafaf guibg=NONE
highlight Cursor term=NONE cterm=NONE ctermfg=66 ctermbg=222 gui=NONE guifg=#5f8787 guibg=#ffd787
@@ -52,8 +56,10 @@ if has("gui_running") || &t_Co == 256
highlight VertSplit term=NONE cterm=NONE ctermfg=243 ctermbg=237 gui=NONE guifg=#767676 guibg=#3a3a3a
highlight Visual term=NONE cterm=NONE ctermfg=222 ctermbg=64 gui=NONE guifg=#ffd787 guibg=#5f8700
highlight WarningMsg term=NONE cterm=NONE ctermfg=209 ctermbg=NONE gui=NONE guifg=#ff875f guibg=NONE
- highlight! link htmlTag Type
- highlight! link htmlEndTag htmlTag
+
+ "
+ " General highlighting group links.
+ "
highlight! link Title Normal
highlight! link LineNr NonText
highlight! link TabLine StatusLineNC
@@ -61,5 +67,13 @@ if has("gui_running") || &t_Co == 256
highlight! link TabLineSel StatusLine
highlight! link VertSplit StatusLineNC
highlight! link VimHiGroup VimGroup
+
+ "
+ " Some specific links for things I just like to tweak a bit.
+ "
+ highlight! link htmlTag Type
+ highlight! link htmlEndTag htmlTag
+ highlight! link phpVarSelector phpIdentifier
+
endif