Mercurial > dotfiles
view .elisp/settings/50.preferences.el @ 84:f013f40e7b63
Import latest nosemacs, set nose to output dots instead of verbose output.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 14 Apr 2009 20:07:12 -0500 |
parents | 45d7441d0cf2 |
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)