Created
January 16, 2025 18:56
-
-
Save NickCrew/f71fc223e5b867e4674ac09ff4e9c3fd to your computer and use it in GitHub Desktop.
Bootstrap minimal configs
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 -e | |
vimrc_url=https://gist.github.com/NickCrew/2aab62f046bc27721ada9a9b1f3724aa | |
bashrc_url=https://gist.github.com/NickCrew/f61b31f66fe7bc79fd880a03c3177c3f | |
[[ -f ~/.vimrc ]] && mv ~/.vimrc ~/.vimrc.orig | |
[[ -f ~/.bashrc ]] && mv ~/.bashrc ~/.bashrc.orig | |
curl -o ~/.vimrc -L $vimrc_url | |
curl -o ~/.bashrc -L $bashrc_url | |
echo "Restart your shell for changes to take effect: exec bash" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment