|
@ -104,9 +104,10 @@ Answering just 'y' or 'n' should be enough. |
|
|
#+end_src |
|
|
#+end_src |
|
|
|
|
|
|
|
|
Keep all backup and auto-save files in one directory |
|
|
Keep all backup and auto-save files in one directory |
|
|
|
|
|
|
|
|
#+begin_src emacs-lisp |
|
|
#+begin_src emacs-lisp |
|
|
(setq backup-directory-alist '(("." . "~/.emacs.d/backups"))) |
|
|
|
|
|
(setq auto-save-file-name-transforms '((".*" "~/.emacs.d/auto-save-list/" t))) |
|
|
|
|
|
|
|
|
(setq backup-directory-alist `((".*" . ,temporary-file-directory))) |
|
|
|
|
|
(setq auto-save-file-name-transforms `((".*" ,temporary-file-directory))) |
|
|
#+end_src |
|
|
#+end_src |
|
|
|
|
|
|
|
|
UTF-8 please |
|
|
UTF-8 please |
|
@ -306,6 +307,7 @@ Set locations of some org files |
|
|
(concat PATH_ORG_FILES "projects.org") |
|
|
(concat PATH_ORG_FILES "projects.org") |
|
|
(concat PATH_ORG_FILES "todo.org")))) |
|
|
(concat PATH_ORG_FILES "todo.org")))) |
|
|
) |
|
|
) |
|
|
|
|
|
(setq org-id-locations-file (concat PATH_USER_LOCAL ".org-id-locations")) |
|
|
#+end_src |
|
|
#+end_src |
|
|
|
|
|
|
|
|
Work specific org-capture-templates |
|
|
Work specific org-capture-templates |
|
|