diff options
author | HampusM <hampus@hampusmat.com> | 2022-01-29 21:08:57 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-01-29 21:08:57 +0100 |
commit | c102ca7093c5221ee3672bec164723514e601b31 (patch) | |
tree | c87d3d1a705037f5ac428232717cdfa298d95797 | |
parent | 9e5ae0fadb33fd671bc5149c59ca1932e2756abb (diff) |
fix: make color column scarier
-rw-r--r-- | colors/ayu.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/colors/ayu.vim b/colors/ayu.vim index a6f77b7..6029c1a 100644 --- a/colors/ayu.vim +++ b/colors/ayu.vim @@ -27,6 +27,7 @@ let s:palette.function = {'dark': "#FFB454", 'light': "#F29718", 'mirage': "# let s:palette.special = {'dark': "#E6B673", 'light': "#E6B673", 'mirage': "#FFC44C"} let s:palette.keyword = {'dark': "#FF7733", 'light': "#FF7733", 'mirage': "#FFAE57"} let s:palette.info = {'dark': "#6C36D8"} +let s:palette.nogo = {'dark': "#670000"} let s:palette.error = {'dark': "#FF3333", 'light': "#FF3333", 'mirage': "#FF3333"} let s:palette.accent = {'dark': "#F29718", 'light': "#FF6A00", 'mirage': "#FFCC66"} @@ -85,7 +86,8 @@ exe "let s:fmt_revb = ' gui=NONE".s:r.s:b. " cterm=NONE".s:r.s:b. " term=NONE" " Vim Highlighting: (see :help highlight-groups)"{{{ " ---------------------------------------------------------------------------- exe "hi! Normal" .s:fg_fg .s:bg_bg .s:fmt_none -exe "hi! ColorColumn" .s:fg_none .s:bg_line .s:fmt_none +exe "hi! ColorColumn" .s:fg_none .s:bg_nogo .s:fmt_none + " Conceal, Cursor, CursorIM exe "hi! CursorColumn" .s:fg_none .s:bg_line .s:fmt_none exe "hi! CursorLine" .s:fg_none .s:bg_line .s:fmt_none |