diff options
author | shoshin <shoshin@cicadas.surf> | 2022-07-01 21:46:12 -0500 |
---|---|---|
committer | shoshin <shoshin@cicadas.surf> | 2022-07-01 21:46:12 -0500 |
commit | eeb6a7fa460270593495757e450d363529907e8b (patch) | |
tree | afa74b4a7395ba8a86628748af4b96b3b6aa48dd /shoshin-config.org | |
parent | 85a0530fe500619c04646f6907f1e74657e2162e (diff) |
Clean: move [corfu] config down in the completion section
Diffstat (limited to 'shoshin-config.org')
-rw-r--r-- | shoshin-config.org | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/shoshin-config.org b/shoshin-config.org index da3d967..a5f2e2b 100644 --- a/shoshin-config.org +++ b/shoshin-config.org @@ -275,24 +275,10 @@ to ~load-theme~ to automatically disable the old one before enabling the new. it seems like consult does this as well as switching themes /as you narrow your selection/. +*** TODO consult-project-buffer -** corfu - -#+begin_src emacs-lisp - (package-install 'corfu) - (setq corfu-auto t - corfu-cycle t - corfu-quit-no-match t) - (global-corfu-mode t) -#+end_src - -*** corfu-terminal enables in terminal interface - -#+begin_src emacs-lisp - (package-install 'corfu-terminal) - (unless (display-graphic-p) - (corfu-terminal-mode +1)) -#+end_src +how do project buffers get filtered? i'm seeing buffers assigned to a project +that in my mind, shouldn't be. ** embark @@ -336,6 +322,23 @@ this is implemented with the ~vertico-directory~ extension. (define-key vertico-map (kbd "M-j") #'vertico-quick-insert) #+end_src +** corfu + +#+begin_src emacs-lisp + (package-install 'corfu) + (setq corfu-auto t + corfu-cycle t + corfu-quit-no-match t) + (global-corfu-mode t) +#+end_src + +*** corfu-terminal enables in terminal interface + +#+begin_src emacs-lisp + (package-install 'corfu-terminal) + (unless (display-graphic-p) + (corfu-terminal-mode +1)) +#+end_src ** which-key #+begin_src emacs-lisp |