Aggiunta cartelle da ignorare. installazione di vundle in prepare.

This commit is contained in:
Emiliano Vavassori 2023-04-29 16:43:41 +02:00
parent 0f56baa132
commit 84a0e55248
2 changed files with 4 additions and 0 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
zsh/distro.base.zsh
vim/bundle
vim/spell

View File

@ -46,6 +46,8 @@ fi
if [[ ! -f "${HOME}/.vimrc" ]]; then
ln -sf ${DOTFILES}/vimrc ${HOME}/.vimrc
ln -sf ${DOTFILES}/vim ${HOME}/.vim
mkdir -p ${HOME}/.vim/bundle
git clone https://github.com/VundleVim/Vundle.vim.git ${HOME}/.vim/bundle/Vundle.vim
# Installing vundle and plugins.
vim +PluginInstall +qall
fi