aboutsummaryrefslogtreecommitdiff
path: root/vim/config/syntax.vim
blob: af332ba37d7f21e37a607206159f67a717f939a2 (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

  " I almost always use a dark background, so use that version of the selected
  " colorscheme
  set background=dark

endif