aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-10 10:03:25 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-10 10:03:25 +1200
commit2ee35846474d8e239e100defb11567d214d7b6fc (patch)
treef4298a3a389b8f4d157d9871aef897c7ed3c4883
parentSwitch to two-spacing (diff)
downloadvim-juvenile-2ee35846474d8e239e100defb11567d214d7b6fc.tar.gz
vim-juvenile-2ee35846474d8e239e100defb11567d214d7b6fc.zip
Remove unneeded variable scoping
-rw-r--r--colors/juvenile.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/colors/juvenile.vim b/colors/juvenile.vim
index 56eaccd..2994e7c 100644
--- a/colors/juvenile.vim
+++ b/colors/juvenile.vim
@@ -10,11 +10,11 @@
set background=dark
if v:version > 580
highlight clear
- if exists('g:syntax_on')
+ if exists('syntax_on')
syntax reset
endif
endif
-let g:colors_name = 'juvenile'
+let colors_name = 'juvenile'
if has('gui_running') || &t_Co >= 256
highlight Normal cterm=NONE ctermfg=NONE ctermbg=NONE gui=NONE guifg=#fcfcfc guibg=#030303