summaryrefslogtreecommitdiffhomepage
path: root/attic/misc.org
diff options
context:
space:
mode:
Diffstat (limited to 'attic/misc.org')
-rw-r--r--attic/misc.org13
1 files changed, 7 insertions, 6 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