-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemacs-customizations
33 lines (32 loc) · 1.14 KB
/
emacs-customizations
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
(setq delete-old-versions t
kept-new-versions 10
kept-old-versions 0
backup-by-copying t
version-control t)
(setq zone-timer (run-with-idle-timer 120 t 'zone))
(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.
'(backup-directory-alist (quote (("" . "~/.saves"))))
'(backward-delete-char-untabify-method (quote untabify))
'(c-basic-offset (quote set-from-style))
'(custom-buffer-indent 4)
'(delete-old-versions t)
'(doxymacs-doxygen-style "C++")
'(python-indent-guess-indent-offset nil)
'(python-indent-offset 4)
'(sh-basic-offset 4)
'(sh-indent-after-case (quote +))
'(sh-learn-basic-offset t)
'(standard-indent 4)
'(tab-always-indent nil)
'(tab-width 4)
'(version-control (quote never)))
(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.
)