commit bfa6adc0acba7fd7bf578e722082f99194163f81 parent 80bd7e06a6880b58f1477bacc2a772141c4e57fa Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Thu, 17 Jan 2019 11:22:07 +0100 Fix plugin sourcing on windows Diffstat:
M | links/.vim/vimrc | | | 7 | ++++++- |
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/links/.vim/vimrc b/links/.vim/vimrc @@ -3,4 +3,9 @@ if has('python3') silent! python3 1 endif -source ~/.vim/plugins.vim " make sure that plugins are sourced first +" make sure that plugins are sourced first +if has("win32") + source ~/vimfiles/plugins.vim +else + source ~/.vim/plugins.vim +endif