From 642e0803b31ade022b9e8a743ade96a4c2f9f84f Mon Sep 17 00:00:00 2001 From: Joshua Steele Date: Mon, 4 May 2020 07:31:41 +0300 Subject: [PATCH 1/4] Add GitGutter highlighting. --- colors/vim-monokai-tasty.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index 45f235c..9a592bf 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -377,6 +377,12 @@ call Highlight("VimwikiHeader4", s:light_green, s:none, s:bold) call Highlight("VimwikiHeader5", s:light_green, s:none, s:bold) call Highlight("VimwikiHeader6", s:light_green, s:none, s:bold) +" GitGutter +call Highlight("GitGutterAdd", s:light_green, s:none, s:none) +call Highlight("GitGutterChange", s:light_blue, s:none, s:none) +call Highlight("GitGutterDelete", s:magenta, s:none, s:none) +call Highlight("GitGutterChangeDelete", s:orange, s:none, s:none) + " Must be at the end, because of ctermbg=234 bug. " https://groups.google.com/forum/#!msg/vim_dev/afPqwAFNdrU/nqh6tOM87QUJ set background=dark From 6b324105f9e931788ac61df19ae8856bf0dcfcac Mon Sep 17 00:00:00 2001 From: Joshua Steele Date: Mon, 4 May 2020 07:36:48 +0300 Subject: [PATCH 2/4] Clear previous highlights. --- colors/vim-monokai-tasty.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index 9a592bf..daf368e 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -2,6 +2,7 @@ " " Author: Patrick Stockwell +hi clear if exists("syntax_on") syntax reset endif From bc11d47b97fb21d3171f39414a76d3e73c3ffdc2 Mon Sep 17 00:00:00 2001 From: Joshua Steele Date: Mon, 4 May 2020 07:37:15 +0300 Subject: [PATCH 3/4] Remove bg from SignColumn. --- colors/vim-monokai-tasty.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index daf368e..4d0dc6e 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -87,7 +87,7 @@ call Highlight("Whitespace", s:dark_grey, s:none, s:none) call Highlight("TabLineSel", s:none, s:charcoal, s:bold) -call Highlight("SignColumn", s:grey, s:darker_grey, s:none) +call Highlight("SignColumn", s:none, s:none, s:none) call Highlight("NonText", s:darker_grey, s:none, s:none) call Highlight("TabLineFill", s:none, s:darker_grey, s:none) call Highlight("LineNr", s:darker_grey, s:none, s:none) From 56f3ca6d47fd2492ac75e01fca5379f16264024c Mon Sep 17 00:00:00 2001 From: Joshua Steele Date: Mon, 4 May 2020 07:37:28 +0300 Subject: [PATCH 4/4] Remove empty line at EOF. --- colors/vim-monokai-tasty.vim | 1 - 1 file changed, 1 deletion(-) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index 4d0dc6e..7e073e5 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -387,4 +387,3 @@ call Highlight("GitGutterChangeDelete", s:orange, s:none, s:none) " Must be at the end, because of ctermbg=234 bug. " https://groups.google.com/forum/#!msg/vim_dev/afPqwAFNdrU/nqh6tOM87QUJ set background=dark -