Files
vim-polyglot/plugin/polyglot.vim
2020-10-17 17:40:10 +02:00

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