aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-10 10:42:30 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-10 10:42:30 +1200
commit183c6c8422d6e80566162a5a1614793eaf1e90fd (patch)
tree67a77d8335ae6d543aa41767b3c149869933abca
parentMerge branch 'release/v4.20.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-183c6c8422d6e80566162a5a1614793eaf1e90fd.tar.gz
dotfiles-183c6c8422d6e80566162a5a1614793eaf1e90fd.zip
Merge branch 'release/v4.21.0'v4.21.0
* release/v4.21.0: Bump VERSION Remove unneeded variable scoping from .vimrc
-rw-r--r--VERSION4
-rw-r--r--vim/vimrc6
2 files changed, 5 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index 9bc38852..14d5444f 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v4.20.0
-Thu May 9 22:38:50 UTC 2019
+tejr dotfiles v4.21.0
+Thu May 9 22:42:30 UTC 2019
diff --git a/vim/vimrc b/vim/vimrc
index d996e1c6..67100d0b 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -15,7 +15,7 @@ endif
" Load filetype settings, plugins, and maps
if has('autocmd')
- let g:maplocalleader = ','
+ let maplocalleader = ','
filetype plugin indent on
endif
@@ -23,7 +23,7 @@ endif
if has('syntax')
" Use syntax highlighting
- if !exists('g:syntax_on')
+ if !exists('syntax_on')
syntax enable
endif
@@ -33,7 +33,7 @@ if has('syntax')
endif
" If my colorscheme loaded, turn on subtle 'cursorline' coloring
- if exists('g:colors_name') && g:colors_name ==# 'sahara'
+ if exists('colors_name') && colors_name ==# 'sahara'
if exists('+cursorline')
set cursorline
endif