aboutsummaryrefslogtreecommitdiff
path: root/vim/config/syntax.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-28 21:39:02 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-28 21:40:44 +1300
commit5caa13c27c7f14173ec12bd45c7542228d537f4f (patch)
treee76f798f8380e2e90d1fa0fa215dc035cf3d3a2d /vim/config/syntax.vim
parentMove syntax highlight .vimrc config into subfile (diff)
downloaddotfiles-5caa13c27c7f14173ec12bd45c7542228d537f4f.tar.gz
dotfiles-5caa13c27c7f14173ec12bd45c7542228d537f4f.zip
Move syntax config back into .vimrc
This reverts commit 5dba4c. The order of the configuration matters more for these settings, because the "sahara" colorscheme is only available after loading it as a plugin. I'll divest some other stuff that should be less sensitive to the order in which it's loaded first, and then tackle this one afterwards.
Diffstat (limited to 'vim/config/syntax.vim')
-rw-r--r--vim/config/syntax.vim12
1 files changed, 0 insertions, 12 deletions
diff --git a/vim/config/syntax.vim b/vim/config/syntax.vim
deleted file mode 100644
index 68a344e2..00000000
--- a/vim/config/syntax.vim
+++ /dev/null
@@ -1,12 +0,0 @@
-" Options dependent on the syntax feature
-if has('syntax')
-
- " Use syntax highlighting with 100 lines of context
- silent! syntax enable
- silent! syntax sync minlines=100
-
- " Use my custom color scheme if possible, otherwise I'm happy with whatever
- " the default is, and it usually cares about my background
- set background=dark
- silent! colorscheme sahara
-endif