mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-11 04:53:51 -05:00
10 lines
262 B
VimL
10 lines
262 B
VimL
" 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
|