Created
January 7, 2021 19:17
-
-
Save int3rlop3r/8713569908556d76282ae0bd3fba9dab to your computer and use it in GitHub Desktop.
Automatically configure vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git clone -q https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
echo "Installed Vundle" | |
curl -s https://raw.githubusercontent.com/int3rlop3r/vimrc/master/vimrc -o ~/.vimrc | |
echo "Downloaded custom .vimrc" | |
vim +PluginInstall +qall | |
echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment