Created
February 27, 2011 22:45
-
-
Save richcole/846652 to your computer and use it in GitHub Desktop.
Emacs configuration
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
(tool-bar-mode -1) | |
(menu-bar-mode -1) | |
(scroll-bar-mode -1) | |
(setq inhibit-splash-screen t) | |
(setq-default indent-tabs-mode nil) | |
(setq-default tab-width 4) | |
(font-lock-mode 0) | |
(global-set-key "\C-cm" 'compile) | |
(global-set-key "\C-cg" 'grep) | |
(global-set-key "\C-cr" 'replace-string) | |
(setq make-backup-files nil) | |
(set-variable 'compile-command "cd ~/RJL && rake") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment