annotate .elisp/settings/10.require.el @ 141:e30655eb7050
textmate.el: synced with upstream
Includes discovering that ido-imenu was a better textmate-goto-symbol
and support for excluding files from grepping that are otherwise
tracked in VCS. Useful for symlinks to large trees, and other such things.
author |
Augie Fackler <durin42@gmail.com> |
date |
Tue, 15 Sep 2009 20:28:22 -0400 |
parents |
68f53fa09e99 |
children |
a7deb3b738a2 |
rev |
line source |
77
|
1 ;; Better buffer switching and file loading (load first in case we need the |
|
2 ;; * Messages * buffer) |
|
3 (require 'ido) |
|
4 (setq ido-enable-flex-matching t) |
|
5 (ido-mode t) |
|
6 |
|
7 (require 'python-mode) |
|
8 (require 'ipython) |
|
9 (require 'show-wspace) |
|
10 (require 'mercurial) |
|
11 (require 'diff-mode-) |
|
12 (require 'midnight) |
|
13 |
|
14 (require 'textmate) |
|
15 (textmate-mode) |
|
16 |
|
17 (require 'yaml-mode) |
|
18 (add-to-list 'auto-mode-alist '("\\.yml$" . yaml-mode)) |
|
19 |
|
20 (require 'nose) |