Mercurial > dotfiles
view .elisp/settings/10.require.el @ 232:369d869082fd
hg-rebase-all: corrected wc cleanliness check
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 11 Oct 2010 22:56:06 -0500 |
parents | e4842709368a |
children | 3e1ec121efaf |
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) ;; Python (require 'python-mode) (require 'ipython) ;; VCS (require 'mercurial) (require 'diff-mode-) (require 'magit) ;; Hygene (require 'whitespace) (require 'midnight) ;; other (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)