public
Description: My Emacs config
Homepage:
Clone URL: git://github.com/defunkt/emacs.git
defunkt (author)
Mon Nov 02 11:15:47 -0800 2009
commit  08a60605274d28c9d802014c73602f576143f79a
tree    f3194ef549f1039230cc61bb37366b4df933e7c0
parent  5ae2cba42d160eb5100fe92c0a85a90a8860f1d9
emacs / defunkt.el
100644 34 lines (28 sloc) 0.718 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
(add-to-list 'load-path "~/.emacs.d/vendor")
 
; custom place to save customizations
(setq custom-file "~/.emacs.d/defunkt/custom.el")
(load custom-file)
 
(when (file-exists-p ".passwords") (load ".passwords"))
 
(load "defunkt/lisp")
(load "defunkt/global")
(load "defunkt/defuns")
(load "defunkt/bindings")
(load "defunkt/modes")
(load "defunkt/theme")
(load "defunkt/temp_files")
(load "defunkt/github")
(load "defunkt/git")
(load "defunkt/todo")
 
(when (file-exists-p "defunkt/private")
  (load "defunkt/private"))
 
(vendor 'ack)
(vendor 'cheat)
(vendor 'magit)
(vendor 'gist)
(vendor 'growl)
(vendor 'twittering-mode)
(vendor 'textile-mode)
(vendor 'textmate)
(textmate-mode)
(vendor 'yaml-mode)
(vendor 'tpl-mode)