diff options
author | BonaBeavis <gordian.dziwis@gmail.com> | 2021-12-08 17:45:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-08 17:45:15 +0100 |
commit | e6270a2b1b0e11e082cf41da6b9f979a773174b3 (patch) | |
tree | 6356a6d31737313ebc6d51f6b8e78084fb0743fa /colors/base16-solarized-light.vim | |
parent | a4c51d58ea106f21686ee749d5ca05d3da7abdae (diff) | |
parent | 27be0b8e10bc90f1fb936591bd7e6b47e0d2324b (diff) |
Merge pull request #43 from fnune/improve-diff-and-folding
Improve diff and folds
Diffstat (limited to 'colors/base16-solarized-light.vim')
-rw-r--r-- | colors/base16-solarized-light.vim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/colors/base16-solarized-light.vim b/colors/base16-solarized-light.vim index 598b00e..3b85eae 100644 --- a/colors/base16-solarized-light.vim +++ b/colors/base16-solarized-light.vim @@ -201,8 +201,8 @@ call <sid>hi("Directory", s:gui0D, "", s:cterm0D, "", "", "") call <sid>hi("Error", s:gui00, s:gui08, s:cterm00, s:cterm08, "", "") call <sid>hi("ErrorMsg", s:gui08, s:gui00, s:cterm08, s:cterm00, "", "") call <sid>hi("Exception", s:gui08, "", s:cterm08, "", "", "") -call <sid>hi("FoldColumn", s:gui0C, s:gui01, s:cterm0C, s:cterm01, "", "") -call <sid>hi("Folded", s:gui03, s:gui01, s:cterm03, s:cterm01, "", "") +call <sid>hi("FoldColumn", s:gui03, s:gui00, s:cterm03, s:cterm00, "", "") +call <sid>hi("Folded", s:gui02, s:gui00, s:cterm02, s:cterm00, "", "") call <sid>hi("IncSearch", s:gui01, s:gui09, s:cterm01, s:cterm09, "none", "") call <sid>hi("Italic", "", "", "", "", "italic", "") call <sid>hi("Macro", s:gui08, "", s:cterm08, "", "", "") @@ -399,10 +399,10 @@ call <sid>hi("cssClassName", s:gui0E, "", s:cterm0E, "", "", "") call <sid>hi("cssColor", s:gui0C, "", s:cterm0C, "", "", "") " Diff highlighting -call <sid>hi("DiffAdd", s:gui0B, s:gui02, s:cterm0B, s:cterm02, "", "") -call <sid>hi("DiffChange", s:gui05, s:gui02, s:cterm05, s:cterm02, "", "") -call <sid>hi("DiffDelete", s:gui08, s:gui02, s:cterm08, s:cterm02, "", "") -call <sid>hi("DiffText", s:gui0D, s:gui02, s:cterm0D, s:cterm02, "", "") +call <sid>hi("DiffAdd", s:gui0B, s:gui01, s:cterm0B, s:cterm01, "", "") +call <sid>hi("DiffChange", s:gui05, s:gui01, s:cterm05, s:cterm01, "", "") +call <sid>hi("DiffDelete", s:gui08, s:gui00, s:cterm08, s:cterm00, "", "") +call <sid>hi("DiffText", s:gui0D, s:gui01, s:cterm0D, s:cterm01, "", "") call <sid>hi("DiffAdded", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "", "") call <sid>hi("DiffFile", s:gui08, s:gui00, s:cterm08, s:cterm00, "", "") call <sid>hi("DiffNewFile", s:gui0B, s:gui00, s:cterm0B, s:cterm00, "", "") |