aboutsummaryrefslogtreecommitdiff
path: root/vim/config/syntax.vim
blob: 68a344e22b2b5f2c38346c42ee9891c574be83e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
" 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