Last active
August 23, 2018 22:38
-
-
Save johnrlive/70fb557fcabc0b7608c6b1fb7ae25c12 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
echo 'Install vim' | |
sudo apt-get install vim | |
echo 'Install vim-plug' | |
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ | |
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
echo 'mkdir ~/.vim/plugged' | |
mkdir ~/.vim/plugged | |
echo 'backup .vimrc' | |
cp ~/.vimrc ~/.vimrc.backup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment