-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinit.el
More file actions
28 lines (23 loc) · 947 Bytes
/
Copy pathinit.el
File metadata and controls
28 lines (23 loc) · 947 Bytes
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
;; -*- Mode: Emacs-Lisp -*-
;; .emacs in farnsworth's Mac OS X
;; by Filipe Cabecinhas
(setq debug-on-error t)
(defconst home-dir (expand-file-name "~/.emacs.d"))
(defun home-dir/ (&optional file)
(setq file (or file ""))
(concat home-dir "/" file))
(add-to-list 'load-path home-dir)
(load "configs")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(canlock-password "1c5d1c590603119feb2b954caf6d55294f97f4cc")
'(safe-local-variable-values (quote ((TeX-master . t) (TeX-engine . xetex)))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)