version 0.9

This commit is contained in:
ManjaroOne666 2018-11-05 08:52:49 +00:00
parent 9f4c2d084c
commit 7985e470d0
1 changed files with 7 additions and 7 deletions

View File

@ -88,12 +88,12 @@
yellow6 = ["#d0d095", 34, "yellow"]
yellow7 = ["#d5d5a1", 34, "yellow"]
# TODO dark should be weak, light should be strong
bg_weak1 = ["#1B1C1D", 232, "gray"]
bg_cursorline = ["#1B1C1D", 232, "gray"]
bg_colorcolumn = bg_cursorline
bg_cursorcolumn = ["#1F1F1F", 232, "gray"]
bg = ["#202122", 234, "black"]
bg_input = ["#384046", 17, "darkblue"]
bg_cursorline_input = ["#384046", 17, "darkblue"]
fg_weak1 = ["#494646", 238, "gray"]
fg_comment = ["#5d5d5d", 240, "gray"]
fg_weak2 = ["#716c6c", 243, "gray"]
@ -263,9 +263,9 @@
[ "VertSplit", bg, ui_bg, "NONE" ],
[ "FoldColumn", bg, fg_weak1, "NONE" ],
[ "ColorColumn", bg_weak1, "NONE", "NONE" ],
[ "ColorColumn", bg_colorcolumn, "NONE", "NONE" ],
[ "SignColumn", bg, ui_fg_strong3, "NONE" ],
[ "CursorLine", bg_weak1, "NONE", "NONE" ],
[ "CursorLine", bg_cursorline, "NONE", "NONE" ],
[ "Title", "NONE", fg_strong2, "bold" ],
@ -819,8 +819,8 @@ endif
augroup cursorlinebg
au!
au InsertEnter * hi CursorLine ctermbg=<%= bg_input[1] %> ctermfg=NONE cterm=NONE guibg=<%= bg_input[0] %> guifg=NONE
au InsertLeave * hi CursorLine ctermbg=<%= bg_weak1[1] %> ctermfg=NONE cterm=NONE guibg=<%= bg_weak1[0] %> guifg=NONE
au InsertEnter * hi CursorLine ctermbg=<%= bg_cursorline_input[1] %> ctermfg=NONE cterm=NONE guibg=<%= bg_cursorline_input[0] %> guifg=NONE
au InsertLeave * hi CursorLine ctermbg=<%= bg_cursorline[1] %> ctermfg=NONE cterm=NONE guibg=<%= bg_cursorline[0] %> guifg=NONE
augroup END