diff options
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 |