diff options
author | Rom Grk <romgrk.cc@gmail.com> | 2021-04-30 21:07:35 -0400 |
---|---|---|
committer | Rom Grk <romgrk.cc@gmail.com> | 2021-04-30 21:07:35 -0400 |
commit | 0c292c6c7cfc5b4fe66d52b33f42a90234ecaf3c (patch) | |
tree | ffee747499fa0e4867026a60221b950b8b00a258 /colors | |
parent | 173f28c7d6e832b78a0068e6251c9ef9a82255e3 (diff) |
fix: undefined variable (closes #14)
Diffstat (limited to 'colors')
-rw-r--r-- | colors/doom-one.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/colors/doom-one.vim b/colors/doom-one.vim index 2a5c518..202e2da 100644 --- a/colors/doom-one.vim +++ b/colors/doom-one.vim @@ -200,7 +200,7 @@ call s:_('BufferTabpageFill', s:base4, s:bg_other, 'bold') call s:_('BufferPart', s:diff_info_fg, s:diff_info_bg0, 'bold') -if has("nvim") && g:doom_one_terminal_colors +if has("nvim") && get(g:, 'doom_one_terminal_colors', v:false) let g:terminal_color_0 = s:bg let g:terminal_color_1 = s:red let g:terminal_color_2 = s:green_alt |