Dotfiles/nvim/.config/nvim/init.vim
Jonathan Hodgson f9bb318e77 VIM: Adds some syntax plugins
These plugins shouldn't add much (if any) functionality. They are just
for syntax highlighting, indenting etc.
2020-09-26 17:27:32 +01:00

16 lines
338 B
VimL

let mapleader = "\<Space>"
let maplocalleader = "\\"
if has('packages')
packadd! fzf.vim
packadd! gruvbox
packadd! vim-json
packadd! vim-less
packadd! vim-tridactyl
endif
" Enables filetype detection as well as filetype specific indent rules and
" plugins
filetype indent plugin on "
" Enables filetype specific syntaxs
syntax on