Skip to content

Instantly share code, notes, and snippets.

@linc01n
Created October 13, 2015 15:12
Show Gist options
  • Save linc01n/1edc32289bf5038f4e90 to your computer and use it in GitHub Desktop.
Save linc01n/1edc32289bf5038f4e90 to your computer and use it in GitHub Desktop.
#!/bin/zsh
switche () {
case $1 in
j)
profile='~/.emacs.d.ocodo'
;;
s)
profile='~/.emacs.d.spacemacs'
;;
d)
profile='~/.emacs.d.defualt'
;;
esac
rm -rf ~/.emacs.d
ln -sf $profile ~/.emacs.d
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment