Show various marks in the left margin.
[profile.git] / .vim / colors / iain.vim
index 02a3b8f..0fb251c 100644 (file)
@@ -1,4 +1,3 @@
-" $Id$
 " Mangling for terminal code ripped from desert256.
 
 if version > 580
@@ -245,15 +244,15 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
     call <SID>X("ModeMsg", "#22cce2", "", "")
     call <SID>X("Question", "#00ff00", "", "none")
     "call <SID>X("NonText", "#0030ff", "", "")
-    call <SID>X("VertSplit", "#000000", "#a9a9a9", "none")
+    call <SID>X("VertSplit", "#000000", "#808080", "none")
     call <SID>X("Folded", "#808080", "#000040", "")
     call <SID>X("FoldColumn", "#808080", "#000040", "")
-    call <SID>X("LineNr", "#90f020", "", "")
+    call <SID>X("LineNr", "#90f020", "#303030", "")
     call <SID>X("DiffAdd", "#00008b", "", "")
     call <SID>X("DiffChange", "#8b008b", "", "")
     call <SID>X("DiffDelete", "#0000ff", "#008b8b", "bold")
     call <SID>X("DiffText", "", "#ff0000", "bold")
-    call <SID>X("Cursor", "#000000", "#ffff00", "")
+    call <SID>X("Cursor", "#000000", "#00ff00", "")
     call <SID>X("lCursor", "#000000", "#ffffff", "")
     "call <SID>X("Comment", "#80a0ff", "", "")
     "call <SID>X("Constant", "#ffa0a0", "", "")
@@ -265,6 +264,7 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
     call <SID>X("Ignore", "#ffffff", "", "")
 
     " My stuff.
+    call <SID>X("StatusLineNC", "black", "#808080", "none")
     call <SID>X("WildMenu", "blue", "white", "bold")
     call <SID>X("Todo", "black", "green", "bold")
     call <SID>X("MoreMsg", "#00ff00", "", "none")
@@ -275,6 +275,8 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
     call <SID>X("Operator", "#e0e000", "", "none")
     call <SID>X("Statement", "#ffff00", "", "none")
 
+    call <SID>X("Pmenu", "#ffffff", "#287eff", "")
+
     hi Comment ctermfg=lightblue cterm=none guifg=#80a0ff gui=none
 
     call <SID>X("Function", "darkgreen", "", "none")
@@ -305,6 +307,12 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
     hi link shShellVariables Identifier
 
     " Fix up Perl stuff.
+
+    " Signs to highlight marks.
+    call <SID>X("MarkLine", "", "#2e2e2e", "")
+    call <SID>X("MarkDot", "red", "#2e2e2e", "")
+    call <SID>X("MarkSign", "lightblue", "#2e2e2e", "")
+    hi! link SignColumn LineNr
 endif
 
 " vim: set fdl=0 fdm=marker: