|
|
@ -131,9 +131,17 @@ https://blog.d46.us/advanced-emacs-startup/ |
|
|
|
(setq custom-file (concat MY--PATH_USER_LOCAL "custom.el")) ;; don't spam init.e with saved customization settings |
|
|
|
(setq backup-directory-alist `((".*" . ,temporary-file-directory))) |
|
|
|
(setq auto-save-file-name-transforms `((".*" ,temporary-file-directory))) |
|
|
|
(setq auto-save-list-file-prefix (concat MY--PATH_USER_LOCAL "auto-savelist/.saves-")) |
|
|
|
(customize-set-variable 'auth-sources (list (concat MY--PATH_USER_LOCAL "authinfo") |
|
|
|
(concat MY--PATH_USER_LOCAL "authinfo.gpg") |
|
|
|
(concat MY--PATH_USER_LOCAL "netrc"))) |
|
|
|
(setq native-comp-eln-load-path (list (expand-file-name "eln-cache" MY--PATH_USER_LOCAL))) |
|
|
|
(setq tramp-auto-save-directory (concat MY--PATH_USER_LOCAL "tramp-auto-save")) |
|
|
|
(setq tramp-persistency-file-name (concat MY--PATH_USER_LOCAL "tramp")) |
|
|
|
(setq eshell-directory-name (concat MY--PATH_USER_LOCAL "eshell")) |
|
|
|
(setq nsm-settings-file (concat MY--PATH_USER_LOCAL "network-security.data")) |
|
|
|
(setq lsp-session-file (concat MY--PATH_USER_LOCAL ".lsp-session-v1")) |
|
|
|
(setq svg-lib-icons-dir (concat MY--PATH_USER_LOCAL "svg-lib/")) |
|
|
|
#+end_src |
|
|
|
|
|
|
|
|
|
|
@ -1942,7 +1950,9 @@ In status buffer: |
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
;; updated version needed for magit, at least on windows |
|
|
|
(use-package transient |
|
|
|
:ensure t) |
|
|
|
:ensure t |
|
|
|
:custom |
|
|
|
(transient-history-file (concat MY--PATH_USER_LOCAL "transient-history.el"))) |
|
|
|
|
|
|
|
(use-package magit |
|
|
|
:ensure t |
|
|
|