-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdot.emacs
33 lines (30 loc) · 1.25 KB
/
dot.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
;;; dot.emacs --- skeletal .emacs for my-site-start -*- emacs-lisp -*-
(autoload 'my-site-start "my-site-start/my-site-start" nil t)
(my-site-start "~/.emacs.d/site-start.d/")
(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.
'(cperl-close-paren-offset 0)
'(cperl-continued-statement-offset 0)
'(cperl-extra-newline-before-brace t)
'(cperl-extra-newline-before-brace-multiline t)
'(cperl-indent-level 4)
'(cperl-label-offset -4)
'(cperl-merge-trailing-else nil)
'(display-time-24hr-format t)
'(display-time-mode t)
'(emacs-lisp-mode-hook (quote (turn-on-eldoc-mode checkdoc-minor-mode)))
'(save-place t nil (saveplace))
'(text-mode-hook (quote (turn-on-auto-fill text-mode-hook-identify)))
'(tool-bar-mode nil)
'(uniquify-buffer-name-style (quote forward) nil (uniquify))
'(use-dialog-box nil))
(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.
)
;;; dot.emacs ends here