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 | |
parent | d2d3900ea28d1bd2a86238e9c16d142d07ec7e45 (diff) |
minor changes
-rw-r--r-- | .gitignore | 1 | ||||
-rwxr-xr-x | install.sh | 5 | ||||
l--------- | nvim/autoload/plug.vim | 1 |
3 files changed, 5 insertions, 2 deletions
@@ -4,6 +4,7 @@ vim/vimundo/* vim/bundle/ nvim/plugged/ nvim/vim-plug/ +nvim/autoload/ nvim/vimundo/ vifm/Trash vifm/vimfiles @@ -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 diff --git a/nvim/autoload/plug.vim b/nvim/autoload/plug.vim deleted file mode 120000 index 75d4078..0000000 --- a/nvim/autoload/plug.vim +++ /dev/null @@ -1 +0,0 @@ -/home/urbain/dotfiles/nvim/vim-plug/plug.vim
\ No newline at end of file |