diff options
author | Chris <[email protected]> | 2020-04-29 11:29:29 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-04-29 11:29:29 -0400 |
commit | 2ad0e27084a41cbbbef7e0c3d38351a707e5854d (patch) | |
tree | a015646faaee678728cb6c6c0987f2970b4f21c7 | |
parent | 9d39d59b95af625372d11a8f12d33537806d5594 (diff) |
commented out theme backround use terminal for now
-rw-r--r-- | themes/onedark.vim | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/themes/onedark.vim b/themes/onedark.vim index c1d8af56..3a08f4a9 100644 --- a/themes/onedark.vim +++ b/themes/onedark.vim @@ -1,11 +1,11 @@ " onedark.vim override: Don't set a background color when running in a terminal; -if (has("autocmd") && !has("gui_running")) - augroup colorset - autocmd! - let s:white = { "gui": "#ABB2BF", "cterm": "145", "cterm16" : "7" } - autocmd ColorScheme * call onedark#set_highlight("Normal", { "fg": s:white }) " `bg` will not be styled since there is no `bg` setting - augroup END -endif +" if (has("autocmd") && !has("gui_running")) +" augroup colorset +" autocmd! +" let s:white = { "gui": "#ABB2BF", "cterm": "145", "cterm16" : "7" } +" autocmd ColorScheme * call onedark#set_highlight("Normal", { "fg": s:white }) " `bg` will not be styled since there is no `bg` setting +" augroup END +" endif "autocmd ColorScheme * call onedark#set_highlight("Normal", { "fg": s:white }) " `bg` will not be styled since there is no `bg` setting |