diff options
author | Urbain Vaes <urbain@vaes.uk> | 2015-05-18 15:32:57 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2015-05-18 15:32:57 +0100 |
commit | b141fcb0b471b70dbab9dd8cfcbd232ac21f7c05 (patch) | |
tree | 3dbe9df3e8be00177a5c105a11219de140a418e6 /install.sh | |
parent | d2d3900ea28d1bd2a86238e9c16d142d07ec7e45 (diff) |
minor changes
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -39,11 +39,11 @@ fi echo -e "\n*** Updating/Creating git repositories *** \n" declare -A repos -repos[junegunn]=$home/.nvim/vim-plug repos[altercation]=$home/.solarized/mutt-colors-solarized repos[Anthony25]=$home/.solarized/gnome-terminal-colors-solarized repos[seebi]=$home/.solarized/dircolors-solarized repos[gmarik]=$home/.vim/bundle/vundle +repos[junegunn]=$home/.nvim/vim-plug repos[tmux-plugins]=$home/.tmux/plugins/tpm for author in "${!repos[@]}"; do @@ -61,6 +61,9 @@ for author in "${!repos[@]}"; do done cd $dir/nvim +if [ -e autoload ]; then + rm -rf autoload +fi mkdir -p autoload ln -s $dir/nvim/vim-plug/plug.vim $dir/nvim/autoload/plug.vim |