diff options
| -rw-r--r-- | attic/misc.org | 13 | ||||
| -rw-r--r-- | gnus.org | 2 | 
2 files changed, 8 insertions, 7 deletions
| diff --git a/attic/misc.org b/attic/misc.org index cb98a99..d9d1aaa 100644 --- a/attic/misc.org +++ b/attic/misc.org @@ -100,23 +100,24 @@      #+end_src  * corfu and dabbrev -  #+begin_src emacs-lisp :load no +  #+begin_src emacs-lisp      (jao-load-path "corfu")      (use-package corfu - +      :commands (corfu-mode)        :init (setq corfu-cycle t                    corfu-excluded-modes '(clojure-mode)                    tab-always-indent 'complete)        :config +        (corfu-global-mode) +        (use-package dabbrev -      ;; Swap M-/ and C-M-/ -      :bind (("M-/" . dabbrev-completion) -             ("C-M-/" . dabbrev-expand))) +        ;; Swap M-/ and C-M-/ +        :bind (("M-/" . dabbrev-completion) +               ("C-M-/" . dabbrev-expand)))        :bind (:map corfu-map               ("TAB" . corfu-next)               ("S-TAB" . corfu-previous))) -    #+end_src @@ -420,7 +420,7 @@               (gcc-self . nil)               (auto-expire . t)               (total-expire . t) -             (expiry-wait . 3) +             (expiry-wait . 365)               (expiry-target . delete))              ("^nnimap:feeds/podcasts"               (auto-expire . nil) | 
