summaryrefslogtreecommitdiffstats
path: root/plugin/polyglot.vim
blob: 27e12b77e200dd4dc5ef6b6387fa12c3bddbd2ce (plain) (blame)
1
2
3
4
5
6
7
8
9
" Turn on filetype plugins (:help filetype-plugin).
if has('autocmd') && !(exists("did_load_filetypes") && exists("did_indent_on"))
  filetype plugin indent on
endif

" Enable syntax highlighting.
if has('syntax') && !exists('g:syntax_on')
  syntax enable
endif