Created
March 6, 2011 07:53
-
-
Save iley/857128 to your computer and use it in GitHub Desktop.
emacs config
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
(setq standard-indent 2) | |
(setq scroll-step 1) | |
(mouse-wheel-mode t) | |
; color theme setup | |
(require 'color-theme) | |
(color-theme-initialize) | |
(setq color-theme-is-global t) | |
(color-theme-dark-laptop) | |
(setq x-select-enable-clipboard t) | |
(require 'slime) | |
(slime-setup) | |
(set-face-attribute 'default nil :font "Droid Sans Mono-12") | |
(setq make-backup-files nil) | |
(setq inhibit-splash-screen t) | |
(require 'magit) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment