aboutsummaryrefslogtreecommitdiffstats
path: root/colors/nord.vim
diff options
context:
space:
mode:
authorGravatar Arctic Ice Studio <development@arcticicestudio.com>2018-06-23 08:01:51 +0200
committerGravatar Arctic Ice Studio <development@arcticicestudio.com>2018-06-23 08:30:09 +0200
commit50ec737b8fda0fd0a679738099c34037e8149704 (patch)
tree7cf18dc087a5e437e33062407a5b716cd2c2dca8 /colors/nord.vim
parent2508195ad778a3791628044990a3c08dd5fbbc8a (diff)
downloadnord-vim-50ec737b8fda0fd0a679738099c34037e8149704.tar.gz
Fix inconsistent line number foreground color in GUI mode
In term mode the number uses nord4, but in GUI mode nord3 was used instead. This was not intended and has been changed to match the term mode style. GH-100
Diffstat (limited to 'colors/nord.vim')
-rwxr-xr-xcolors/nord.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/colors/nord.vim b/colors/nord.vim
index 379fe6f..6281c77 100755
--- a/colors/nord.vim
+++ b/colors/nord.vim
@@ -185,7 +185,7 @@ endif
"+--- Gutter ---+
call s:hi("CursorColumn", "", s:nord1_gui, "NONE", s:nord1_term, "", "")
if g:nord_cursor_line_number_background == 0
- call s:hi("CursorLineNr", s:nord3_gui, s:nord0_gui, "NONE", "", "", "")
+ call s:hi("CursorLineNr", s:nord4_gui, s:nord0_gui, "NONE", "", "", "")
else
call s:hi("CursorLineNr", s:nord4_gui, s:nord1_gui, "NONE", s:nord1_term, "", "")
endif