Created
September 8, 2011 19:12
-
-
Save avdi/1204386 to your computer and use it in GitHub Desktop.
Set up a fresh Emacs config directory
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 (<= emacs-major-version 23) | |
(load "~/.emacs23") | |
(load "~/.emacs24.d/init.el")) |
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
mkdir .emacs24.d | |
cd .emacs24.d | |
git init | |
# Not shown: create a basic README.org file... | |
git add README.org | |
git commit -m "Initial" | |
hub create # Create a new Github repo and link it here | |
git push -u origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment