Mercurial > dotfiles
comparison .emacs @ 52:d6ea7c108453
Add yaml mode.
| author | Augie Fackler <durin42@gmail.com> |
|---|---|
| date | Thu, 19 Feb 2009 09:19:18 -0600 |
| parents | ac7a8f9a0924 |
| children | 5c25d3dc29ab |
comparison
equal
deleted
inserted
replaced
| 51:ac7a8f9a0924 | 52:d6ea7c108453 |
|---|---|
| 27 (add-to-list 'auto-mode-alist '("\\.clj$" . clojure-mode)) | 27 (add-to-list 'auto-mode-alist '("\\.clj$" . clojure-mode)) |
| 28 | 28 |
| 29 (require 'textmate) | 29 (require 'textmate) |
| 30 (textmate-mode) | 30 (textmate-mode) |
| 31 (textmate-also-ignore "eggs|cover|daisy|.*.pyc") | 31 (textmate-also-ignore "eggs|cover|daisy|.*.pyc") |
| 32 | |
| 33 ; yaml | |
| 34 (require 'yaml-mode) | |
| 35 (add-to-list 'auto-mode-alist '("\\.yml$" . yaml-mode)) | |
| 36 | |
| 32 | 37 |
| 33 ; Start the server so that emacsclient will work | 38 ; Start the server so that emacsclient will work |
| 34 ; TODO: is there a way to *not* start a server if one was already running? | 39 ; TODO: is there a way to *not* start a server if one was already running? |
| 35 (server-start) | 40 (server-start) |
| 36 | 41 |
