Dotfiles/nvim/.config/nvim/init.vim
Jonathan Hodgson fbf82ca323 VIM: Moves plugins to init.vim and adds syntax and filetype on
syntax on needs to be run after the plugins are loader otherwise their
ftdetect won't be evaluated.

source: b98553808d (diff-f1ac6cb94fa93f38916c6118994b11e3R197-R204)
2020-09-26 16:02:40 +01:00

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