Mercurial > dotfiles
view .elisp/settings/10.require.el @ 214:2a4efba0fe8b
emacs: move package bootstrap to its own file
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Sat, 13 Feb 2010 20:00:15 -0600 |
parents | 8980dc2deda0 |
children | a01712792c2b |
line wrap: on
line source
;; Better buffer switching and file loading (load first in case we need the ;; * Messages * buffer) (require 'ido) (setq ido-enable-flex-matching t) (ido-mode t) (require 'python-mode) (require 'ipython) (require 'show-wspace) (require 'mercurial) (require 'diff-mode-) (require 'midnight) (require 'textmate) (textmate-mode) ;; override what makes a project root (setq *textmate-project-roots* '(".git" ".hg")) (require 'yaml-mode) (add-to-list 'auto-mode-alist '("\\.yml$" . yaml-mode)) (require 'nose) (require 'http-twiddle)