From c333f8f7282a4649eb095aa2f33970de7124a433 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 1 Jan 2017 10:18:44 +0100 Subject: [PATCH] GHI-#5 Fix unset global variable "colors_name" --- colors/nord.vim | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/colors/nord.vim b/colors/nord.vim index 407d512b..e408badb 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -6,6 +6,13 @@ " email development@arcticicestudio.com + " copyright Copyright (C) 2016 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +if version > 580 + hi clear + if exists("syntax_on") + syntax reset + endif +endif + let g:colors_name = "nord" let s:nord_vim_version="0.1.1" set background=dark @@ -41,13 +48,6 @@ let s:nord13_term = "3" let s:nord14_term = "2" let s:nord15_term = "5" -if version > 580 - hi clear - if exists("syntax_on") - syntax reset - endif -endif - function! s:hi(group, guifg, guibg, ctermfg, ctermbg, attr, guisp) if a:guifg != "" exec "hi " . a:group . " guifg=" . a:guifg