Last active
December 19, 2020 22:01
-
-
Save spikegrobstein/3f889a7f19d3c6a6bbc0 to your computer and use it in GitHub Desktop.
set up all my shit real quick on a fresh box
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
if [[ ! -e ~/.ssh/id_rsa.pub ]]; then | |
ssh-keygen -t rsa -b 4096 | |
fi | |
cat ~/.ssh/id_rsa.pub | |
sudo apt-get install -y vim-nox tmux silversearcher-ag | |
git clone git://github.com/spikegrobstein/vim-config.git ~/.vim | |
cd ~/.vim | |
git submodule update --init | |
ln -s ~/.vim/vimrc ~/.vimrc | |
cd | |
git config --global user.name 'spike grobstein' | |
git config --global user.email '[email protected]' | |
curl -o ~/.tmux.conf 'https://gist.githubusercontent.com/spikegrobstein/5724689/raw/21ed1ef7befc34bf0aa8ca10fe43fba2178e33c5/tmux.conf' | |
curl -o ~/.inputrc 'https://gist.githubusercontent.com/spikegrobstein/6334294/raw/79ed098317315a986775aae8f9e629725f7d856a/inputrc' | |
echo "done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment