aboutsummaryrefslogtreecommitdiff
path: root/vim/config/syntax.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/config/syntax.vim')
-rw-r--r--vim/config/syntax.vim17
1 files changed, 0 insertions, 17 deletions
diff --git a/vim/config/syntax.vim b/vim/config/syntax.vim
deleted file mode 100644
index a2186b1f..00000000
--- a/vim/config/syntax.vim
+++ /dev/null
@@ -1,17 +0,0 @@
-" Options dependent on the syntax feature
-if has('syntax') && !has('g:syntax_on')
-
- " Use syntax highlighting with 100 lines of context
- silent! syntax enable
- silent! syntax sync minlines=100
-
- " Opinionated; if the author is using color at all, it will probably be with
- " a dark background
- set background=dark
-
- " The 'sahara' colorscheme only works in the GUI or with 256 colors
- if has('gui_running') || &t_Co >= 256
- silent! colorscheme sahara
- endif
-
-endif