aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-18 01:06:43 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-18 01:06:43 +1200
commit7504b62005330302110ed26f84ac2f588251ca72 (patch)
treed15b2251d799371aaccee5754b566c8879989a42
parentMerge branch 'release/v1.1.0' (diff)
parentBump VERSION (diff)
downloadvim-sahara-7504b62005330302110ed26f84ac2f588251ca72.tar.gz
vim-sahara-7504b62005330302110ed26f84ac2f588251ca72.zip
Merge branch 'release/v1.2.0'v1.2.0
* release/v1.2.0: Move load guard to top of file
-rw-r--r--VERSION2
-rw-r--r--colors/sahara.vim12
2 files changed, 7 insertions, 7 deletions
diff --git a/VERSION b/VERSION
index 9084fa2..26aaba0 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.1.0
+1.2.0
diff --git a/colors/sahara.vim b/colors/sahara.vim
index 7c12739..5b12b57 100644
--- a/colors/sahara.vim
+++ b/colors/sahara.vim
@@ -7,6 +7,12 @@
" <https://sanctum.geek.nz/>
"
+" Do nothing if we can't get our colors
+if !has('gui_running') && &t_Co < 256
+ echoerr 'Colorscheme requires GUI or 256 color term'
+ finish
+endif
+
" Terminal setup
set background=dark
if v:version > 580
@@ -16,12 +22,6 @@ if v:version > 580
endif
endif
-" Do nothing if we can't get our colors
-if !has('gui_running') && &t_Co < 256
- echoerr 'Colorscheme requires GUI or 256 color term'
- finish
-endif
-
" Set colorscheme name
let colors_name = 'sahara'