diff options
author | Arctic Ice Studio <development@arcticicestudio.com> | 2017-01-01 10:18:44 +0100 |
---|---|---|
committer | Arctic Ice Studio <development@arcticicestudio.com> | 2017-01-01 10:18:44 +0100 |
commit | c333f8f7282a4649eb095aa2f33970de7124a433 (patch) | |
tree | e89407e1cb046f9545e28d680af32e7e211374ca | |
parent | 4666c595e26f5e53ee2198c01dc3b4b71021e7b5 (diff) | |
download | nord-vim-c333f8f7282a4649eb095aa2f33970de7124a433.tar.gz |
GHI-#5 Fix unset global variable "colors_name"
-rwxr-xr-x | colors/nord.vim | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/colors/nord.vim b/colors/nord.vim index 407d512..e408bad 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 |