Mercurial > hg > config
comparison .emacs @ 309:6095d439d1f2
new stuff! realwhich
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 16 May 2013 23:27:18 -0700 |
parents | a1c72313b3df |
children | a9d3f1210506 |
comparison
equal
deleted
inserted
replaced
308:8be2beb2d952 | 309:6095d439d1f2 |
---|---|
10 | 10 |
11 ;; no need for a tool bar | 11 ;; no need for a tool bar |
12 (if (boundp 'tool-bar-mode) (tool-bar-mode 0)) | 12 (if (boundp 'tool-bar-mode) (tool-bar-mode 0)) |
13 | 13 |
14 ;; ...or a startup message | 14 ;; ...or a startup message |
15 ;; instead, it'd be nice to start with a list of recent files (recentf) | |
15 (setq inhibit-startup-message t) | 16 (setq inhibit-startup-message t) |
16 | 17 |
17 ;; no f-ing backup files | 18 ;; no f-ing backup files |
18 (setq make-backup-files nil) | 19 (setq make-backup-files nil) |
19 | 20 |
55 (transient-mark-mode 1) | 56 (transient-mark-mode 1) |
56 | 57 |
57 (put 'upcase-region 'disabled nil) | 58 (put 'upcase-region 'disabled nil) |
58 | 59 |
59 ;;;; line/col #s | 60 ;;;; line/col #s |
60 | 61 ;;;; Show line and column numbers in the mode line |
61 ;; Show line and column numbers in the mode line | |
62 (line-number-mode 1) | 62 (line-number-mode 1) |
63 (column-number-mode 1) | 63 (column-number-mode 1) |
64 | |
64 | 65 |
65 ;;;; modes | 66 ;;;; modes |
66 | 67 |
67 ;; Bind major editing modes to certain file extensions | 68 ;; Bind major editing modes to certain file extensions |
68 (setq auto-mode-alist (cons '("\\.zcml$" . sgml-mode) auto-mode-alist)) | 69 (setq auto-mode-alist (cons '("\\.zcml$" . sgml-mode) auto-mode-alist)) |