view .elisp/settings/10.require.el @ 216:a01712792c2b

emacs requires: cleanup and organize a little
author Augie Fackler <durin42@gmail.com>
date Sat, 14 Aug 2010 20:42:58 -0500
parents 2a4efba0fe8b
children e4842709368a
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)
(require 'show-wspace)
(require 'mercurial)
(require 'diff-mode-)
(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)