Created
February 19, 2011 17:30
-
-
Save mstrauss/835209 to your computer and use it in GitHub Desktop.
my personal emacs prefs
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
(setq make-backup-files nil) | |
;; Interactively Do Things (highly recommended, but not strictly required) | |
(require 'ido) | |
(ido-mode t) | |
;; Rinari | |
(add-to-list 'load-path "~/.emacs.d/rinari") | |
(require 'rinari) | |
;; no tabs by default. modes that really need tabs should enable | |
;; indent-tabs-mode explicitly. makefile-mode already does that, for | |
;; example. | |
(setq-default indent-tabs-mode nil) | |
;; http://www.emacswiki.org/emacs/UntabifyUponSave | |
;; if indent-tabs-mode is off, untabify before saving | |
(add-hook 'write-file-hooks | |
(lambda () (if (not indent-tabs-mode) | |
(untabify (point-min) (point-max))))) | |
;; default offset when tab is pressed | |
(setq-default c-basic-offset 2) | |
;; default tab-width | |
(setq-default tab-width 4) | |
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(inhibit-startup-screen t)) | |
(custom-set-faces | |
;; custom-set-faces was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment