10 lines
145 B
VimL
10 lines
145 B
VimL
" enable filetype plugins
|
|
if has('autocmd')
|
|
filetype plugin indent on
|
|
endif
|
|
|
|
" enable syntax highlighting
|
|
if has('syntax')
|
|
syntax enable
|
|
endif
|