-
Notifications
You must be signed in to change notification settings - Fork 0
/
paddy-config.el
63 lines (41 loc) · 1.55 KB
/
paddy-config.el
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;;;;;;;;; entry points to all of my specific config files
;;;;; requirements are ordered by importance, likehood to fail, and time it takes to load
;;; if something fails I want to be able to edit my files
;;; I also want as much of my environemnt as possible
;;; last I don't want it to take a long time to fail
;;; global configs
(require 'global-paddy-config)
(require 'load-externals-paddy)
(require 'key-config-paddy)
(require 'help-fns-paddy)
(require 'anything-config-paddy)
(require 'py-config-paddy)
;(/ 1 0)
(require 'vc-config)
(require 'diff-config)
;;;;specific mode configs
;; most important
(require 'shell-config-paddy)
;(require 'paddy-w3m-config) -- doesn't work in 23
(require 'sql-config-paddy)
(require 'tramp-ansi-config-paddy)
(require 'slime-config-paddy)
;;;;; very likely to fial
;;;;;;;;
(require 'desktop-config-paddy) ;;;;; down here because it takes the longest to load
(require 'font-config-paddy) ;; likely to fail, slow
;(require 'paddy-html-config)
(require 'org-paddy)
(add-to-list 'load-path "/home/paddy/.emacs.d/vendor/php-mode")
(require 'php-config-paddy)
(add-to-list 'auto-mode-alist '("\\.md$" . markdown-mode))
(add-to-list 'auto-mode-alist '("\\.mdown$" . markdown-mode))
;(require 'markdown-mode)
(add-to-list 'load-path "/home/paddy/.emacs.d/vendor/jabber-el-sf/emacs-jabber-0.8.0")
(require 'jabber-autoloads)
;(require 'paddy-secrets)
;(jabber-connect "[email protected]")
(provide 'paddy-config)
(defun my-compile ()
(interactive)
(compile "python /Users/patrickmullen/permalink/tests/play.py" t))