Mercurial > dotfiles
view .elisp/settings/10.require.el @ 250:3a5ce01ccea1
hgrc: add utip alias for finding upstream tip
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Thu, 05 May 2011 11:00:27 -0500 |
parents | 3e1ec121efaf |
children | 14f08dbdba1b |
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) (smex-initialize) ;; 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)