You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
468 B
26 lines
468 B
set nocompatible
|
|
filetype on
|
|
|
|
" SET PATHS
|
|
|
|
set runtimepath+=~/.config/{{ variant }}
|
|
let vimDir = '$HOME/.cache/{{ variant }}'
|
|
call system('mkdir ' . vimDir)
|
|
let &runtimepath.=','.vimDir
|
|
set viminfo+=n~/.cache/{{ variant }}/viminfo
|
|
|
|
" PLUGIN INSTALLATION
|
|
|
|
source ~/.config/{{ variant }}/plugininstall.vim
|
|
|
|
" EDITOR CONFIGURATION
|
|
|
|
{% include 'editor.j2' %}
|
|
|
|
" PLUGINS CONFIGURATION
|
|
|
|
{% include 'pluginconfig.j2' %}
|
|
|
|
" THEME CONFIGURATION
|
|
|
|
source ~/.config/vim/theme.vim
|