-
Notifications
You must be signed in to change notification settings - Fork 0
/
.emacs
41 lines (31 loc) · 1.03 KB
/
.emacs
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
(cond
((string-match "GNU" (emacs-version))
(cond
((string-match "linux" system-configuration)
(if (file-exists-p "~/.emacs-gnu-linux")
(progn
(message "loading GNU Emacs customizations for Linux")
(load-file "~/.emacs-gnu-linux"))))
((string-match "Carbon" (emacs-version))
(progn
t))
) ; matched GNU
))
(if (fboundp 'tool-bar-mode)
(tool-bar-mode -1))
;(setq custom-file "~/me/emacs/.emacs-custom.el")
(setq custom-file "~/.emacs.d/.emacs-custom.el")
(load custom-file)
(when
(load
(expand-file-name "~/.emacs.d/vendor/package-el/package.el"))
(package-initialize))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/vendor/php-mode"))
(require 'paddy-config)
(put 'set-goal-column 'disabled nil)
;;; This was installed by package-install.el.
;;; This provides support for the package system and
;;; interfacing with ELPA, the package archive.
;;; Move this code earlier if you want to reference
;;; packages in your .emacs.