Browse Source

moved recentf config to its own place

master
Marc 3 years ago
parent
commit
c666c8e222
1 changed files with 14 additions and 8 deletions
  1. 22
      config.org

22
config.org

@ -249,14 +249,6 @@ Restore it to reasonable value after init. Also stop garbage collection during m
(defconst MY--PATH_START "p:/Eigene Dateien/Notizen/"))
(setq recentf-save-file (concat MY--PATH_USER_LOCAL "recentf"))
;; exclude some dirs from spamming recentf
(use-package recentf
:config
(recentf-mode)
(setq recentf-exclude '(".*-autoloads\\.el\\'"
"[/\\]\\elpa/"
"COMMIT_EDITMSG\\'")))
(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)))
@ -328,6 +320,20 @@ Some windows specific stuff
(setq w32-get-true-file-attributes nil)))
#+END_SRC
* recentf
Exclude some dirs from spamming recentf
#+begin_src emacs-lisp
(use-package recentf
:config
(recentf-mode)
:custom
(recentf-exclude '(".*-autoloads\\.el\\'"
"[/\\]\\elpa/"
"COMMIT_EDITMSG\\'"))
(recentf-max-menu-items 600)
(recentf-max-saved-items 600))
#+end_src
* visuals
** Font
:PROPERTIES:

Loading…
Cancel
Save