Mercurial > dotfiles
view .elisp/settings/50.preferences.el @ 94:9052c3801744
First stab at some menu items for the nose stuff.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 27 Apr 2009 21:52:04 -0500 |
parents | f013f40e7b63 |
children | 5f7b673008b5 |
line wrap: on
line source
;; All lines should end in a newline (setq require-final-newline t) ;; disable tabs (setq tab-width 4) (setq-default indent-tabs-mode nil) ;; Cleanup whitespace before saves. (add-hook 'before-save-hook '(lambda () (if af-cleanup-whitespace (whitespace-cleanup)))) ;; Disable that startup screen (setq inhibit-startup-message t) ;; Basically everything I do is in version control, stop saving backup files (setq make-backup-files nil) ;; Set some pretty colors that are gentler on my eyes (setq default-frame-alist '((width . 80) (cursor-color . "white") (cursor-type . box) (foreground-color . "white") (background-color . "black") ) ) ; always highlight matching paren (show-paren-mode 1) ;; Automatically revert unedited files that change on the underlying ;; system. (global-auto-revert-mode) ;; I like dots in my nose output (defvar nose-use-verbose nil)