Skip to content

Commit

Permalink
GHI-#5 Fix unset global variable "colors_name"
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Jan 1, 2017
1 parent 4666c59 commit c333f8f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions colors/nord.vim
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
" email [email protected] +
" 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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit c333f8f

Please sign in to comment.