Created
October 11, 2012 06:49
-
-
Save clvrobj/3870644 to your computer and use it in GitHub Desktop.
.emacs
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
(cond | |
((= 23 emacs-major-version) | |
(if (file-exists-p "~/.emacs.d/emacs23.el") | |
(load-file "~/.emacs.d/emacs23.el"))) | |
((= 24 emacs-major-version) | |
(if (file-exists-p "~/.emacs.d/emacs24.el") | |
(load-file "~/.emacs.d/emacs24.el"))) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment