syntax on needs to be run after the plugins are loader otherwise their
ftdetect won't be evaluated.
source: b98553808d (diff-f1ac6cb94fa93f38916c6118994b11e3R197-R204)
12 行
258 B
VimL
12 行
258 B
VimL
let mapleader = "\<Space>"
|
|
let maplocalleader = "\\"
|
|
|
|
if has('packages')
|
|
packadd! gruvbox
|
|
endif
|
|
|
|
" Enables filetype detection as well as filetype specific indent rules and
|
|
" plugins
|
|
filetype indent plugin on "
|
|
" Enables filetype specific syntaxs
|
|
syntax on
|