-
Notifications
You must be signed in to change notification settings - Fork 0
/
pht-stuff.el
41 lines (35 loc) · 1.14 KB
/
pht-stuff.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
;; This assumes that constant 'pht-lisp-dir has been set
;; Stuff packages can use this to simply add required folders
(defun add-load-path-dir (dir-to-add)
(add-to-list 'load-path (expand-file-name (concat pht-lisp-dir "/" dir-to-add))))
(defun open-pht-emacs ()
(interactive)
(find-file (concat pht-lisp-dir "/pht-stuff.el")))
;; I want an emacs-server started if possible
(server-start)
;; ---------------------------------
;; Here comes all my actual packages
;; Select as appropriate ..
(require 'color-stuff)
;;(require 'cedet-stuff)
(require 'ruby-stuff)
;; ;;(require 'scons-stuff)
;; ;;(require 'clojure-stuff)
(require 'org-stuff)
;; ;;(require 'boots-puzzle-stuff)
;; ;;(require 'scala-stuff)
(require 'stevey-stuff)
(require 'misc-stuff)
(require 'lua-stuff)
(require 'magit-stuff)
(require 'muse-stuff)
;;(require 'cpp-stuff)
;;(require 'nsi-stuff)
;;(require 'actionscript-mode)
(require 'js-stuff)
;; Next package comes here ...
;; This tells emacs to use custom.el to
;; store customizations made through 'customize' interface
(setq custom-file (expand-file-name (concat pht-lisp-dir "/custom.el")))
(load custom-file)
(provide 'pht-stuff)