These plugins shouldn't add much (if any) functionality. They are just for syntax highlighting, indenting etc.
16 lines
338 B
VimL
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
|