2021-07-03 14:13:25 +02:00
|
|
|
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' %}
|
2021-07-04 12:41:34 +02:00
|
|
|
|