This script will set up my dotfiles on a new computer. Now, how can I just call something from a gist?
Last active
March 16, 2020 15:47
-
-
Save jlconlin/d7efc5f0faa38be0eb552f5fdaff5ec4 to your computer and use it in GitHub Desktop.
Quick setup script
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
mkdir tmp | |
cd tmp | |
curl https://repo.anaconda.com/archive/Anaconda3-2020.02-MacOSX-x86_64.sh > Anaconda_install.sh | |
source Anaconda_install.sh | |
cd ~ | |
git clone [email protected]:jlconlin/bashConfig.git .bash | |
./.bash/install.sh | |
git clone --recursive [email protected]:jlconlin/ViMConfig.git .vim | |
vim +PluginInstall +qall | |
git clone --recursive [email protected]:jlconlin/tmuxConfiguration.git .tmux | |
ln -s .tmux/tmux.conf .tmux.conf | |
mkdir .config | |
git clone [email protected]:jlconlin/powerlineConfig.git .config/powerline |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment