Add vim plugin ListToogle & enable YouCompleteMe location list entries

This commit is contained in:
Kenneth Benzie 2015-01-08 14:17:30 +00:00
parent 486c7e2d55
commit 47d5017a95

View File

@ -11,6 +11,7 @@ if has("gui_running") || &t_Co == 256
let s:light_grey_blue = [ "102", "#878787" ] let s:light_grey_blue = [ "102", "#878787" ]
let s:grey_blue = [ "103", "#8787af" ] let s:grey_blue = [ "103", "#8787af" ]
let s:mid_grey_blue = [ "59", "#5f5f5f" ] let s:mid_grey_blue = [ "59", "#5f5f5f" ]
let s:dark_blue = [ "18", "#000087" ]
let s:blue = [ "39", "#00afff" ] let s:blue = [ "39", "#00afff" ]
let s:beige = [ "179", "#dfaf5f" ] let s:beige = [ "179", "#dfaf5f" ]
let s:orange = [ "202", "#ff5f00" ] let s:orange = [ "202", "#ff5f00" ]
@ -66,7 +67,7 @@ if has("gui_running") || &t_Co == 256
"call <SID>HiGroup("Cursor", s:empty, s:empty, "none") "call <SID>HiGroup("Cursor", s:empty, s:empty, "none")
"call <SID>HiGroup("CursorIM", s:empty, s:empty, "none") "call <SID>HiGroup("CursorIM", s:empty, s:empty, "none")
"call <SID>HiGroup("CursorColumn", s:empty, s:empty, "none") "call <SID>HiGroup("CursorColumn", s:empty, s:empty, "none")
"call <SID>HiGroup("CursorLine", s:none, s:dark_grey, "none") call <SID>HiGroup("CursorLine", s:none, s:none, "none")
call <SID>HiGroup("Directory", s:light_green, s:empty, "none") call <SID>HiGroup("Directory", s:light_green, s:empty, "none")
call <SID>HiGroup("DiffAdd", s:dark_green, s:grey, "bold") call <SID>HiGroup("DiffAdd", s:dark_green, s:grey, "bold")
call <SID>HiGroup("DiffChange", s:white, s:grey, "bold") call <SID>HiGroup("DiffChange", s:white, s:grey, "bold")
@ -90,7 +91,7 @@ if has("gui_running") || &t_Co == 256
"call <SID>HiGroup("PmenuSbar", s:empty, s:empty, "none") "call <SID>HiGroup("PmenuSbar", s:empty, s:empty, "none")
"call <SID>HiGroup("PmenuThumb", s:empty, s:empty, "none") "call <SID>HiGroup("PmenuThumb", s:empty, s:empty, "none")
"call <SID>HiGroup("Question", s:empty, s:empty, "none") "call <SID>HiGroup("Question", s:empty, s:empty, "none")
call <SID>HiGroup("Search", s:dark_grey, s:light_orange, "none") call <SID>HiGroup("Search", s:none, s:dark_blue, "none")
"call <SID>HiGroup("SpecialKey", s:emptnoney, s:empty, "none") "call <SID>HiGroup("SpecialKey", s:emptnoney, s:empty, "none")
call <SID>HiGroup("SpellBad", s:bright_red, s:empty, "bold") call <SID>HiGroup("SpellBad", s:bright_red, s:empty, "bold")
call <SID>HiGroup("SpellCap", s:blue, s:empty, "bold") call <SID>HiGroup("SpellCap", s:blue, s:empty, "bold")