1
0
nvim-config/core/syntax_highlighting.vim

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