aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arctic Ice Studio <development@arcticicestudio.com>2018-01-05 17:44:04 +0100
committerGravatar Arctic Ice Studio <development@arcticicestudio.com>2018-01-05 17:44:04 +0100
commitedf76eb8235dc681066e2f51602a021c75fa2659 (patch)
treea4ff84d3f06a64a0a3b261ec8fe3588c906d07a7
parent3c14c96115dfaa12b455a996670dd2b4185803b6 (diff)
downloadnord-vim-edf76eb8235dc681066e2f51602a021c75fa2659.tar.gz
Fix matching parens background color in GUI mode
The background color for matching parens (group "MatchParen") has been improved in version "0.7.0" (1), but instead of using "nord3" as background color in GUI mode "nord0" has been assigned. References: (1) https://github.com/arcticicestudio/nord-vim/projects/10 GH-95
-rwxr-xr-xcolors/nord.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/colors/nord.vim b/colors/nord.vim
index cd86298..751fa87 100755
--- a/colors/nord.vim
+++ b/colors/nord.vim
@@ -139,7 +139,7 @@ call s:hi("CursorLine", "", s:nord1_gui, "NONE", s:nord1_term, "NONE", "")
call s:hi("Error", s:nord0_gui, s:nord11_gui, "", s:nord11_term, "", "")
call s:hi("iCursor", s:nord0_gui, s:nord4_gui, "", "NONE", "", "")
call s:hi("LineNr", s:nord3_gui, s:nord0_gui, s:nord3_term, "NONE", "", "")
-call s:hi("MatchParen", s:nord8_gui, s:nord0_gui, s:nord8_term, s:nord3_term, "", "")
+call s:hi("MatchParen", s:nord8_gui, s:nord3_gui, s:nord8_term, s:nord3_term, "", "")
call s:hi("NonText", s:nord2_gui, "", s:nord3_term, "", "", "")
call s:hi("Normal", s:nord4_gui, s:nord0_gui, "NONE", "NONE", "", "")
call s:hi("PMenu", s:nord4_gui, s:nord2_gui, "NONE", s:nord1_term, "NONE", "")