richleland / emacs

fork of emacs

.emacs.d config files

Clone this repository (size: 245.8 KB): HTTPS / SSH
$ hg clone http://code.richleland.com/emacs

Changed (Δ39 bytes):

raw changeset »

init.el (1 lines added, 1 lines removed)

Up to file-list init.el:

3
3
4
4
;; set up textmate-mode
5
5
(require 'textmate-mode)
6
7
6
(add-hook 'python-mode-hook 'textmate-mode)
8
7
8
;; set up electric pairs for elisp-mode
9
9
(add-hook 'emacs-lisp-mode-hook
10
10
	  (lambda ()
11
11
	    (define-key emacs-lisp-mode-map "(" 'electric-pair)))