view .elisp/settings/10.require.el @ 289:5fd871a98b5f

emacs: start making an f4-dwim function I've had one at work, but only now am getting around to it here.
author Augie Fackler <raf@durin42.com>
date Wed, 17 Oct 2012 08:21:15 -0500
parents 14f08dbdba1b
children 7cb31ed262f0
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)

(require 'js2-mode)