Skip to content

Instantly share code, notes, and snippets.

@NickCrew
Created January 16, 2025 18:56
Show Gist options
  • Save NickCrew/f71fc223e5b867e4674ac09ff4e9c3fd to your computer and use it in GitHub Desktop.
Save NickCrew/f71fc223e5b867e4674ac09ff4e9c3fd to your computer and use it in GitHub Desktop.
Bootstrap minimal configs
#!/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