30 lines
657 B
Org Mode
30 lines
657 B
Org Mode
|
#+title: `corfu-mouse` - Mouse support for Corfu
|
||
|
|
||
|
This package adds mouse support to Corfu. To enable,
|
||
|
=M-x corfu-mouse-mode=.
|
||
|
|
||
|
* Installation
|
||
|
|
||
|
~gc-buffers~ isn't available on any ELPA right now. So, you have to follow
|
||
|
one of the following methods:
|
||
|
|
||
|
** Quelpa
|
||
|
|
||
|
#+begin_src emacs-lisp
|
||
|
(quelpa '(corfu-mouse
|
||
|
:fetcher git
|
||
|
:url "https://codeberg.org/akib/emacs-corfu-mouse.git"))
|
||
|
#+end_src
|
||
|
|
||
|
** Straight.el
|
||
|
|
||
|
#+begin_src emacs-lisp
|
||
|
(straight-use-package
|
||
|
'(corfu-mouse :type git
|
||
|
:repo "https://codeberg.org/akib/emacs-corfu-mouse.git"))
|
||
|
#+end_src
|
||
|
|
||
|
** Manual
|
||
|
|
||
|
Download the ~corfu-mouse.el~ file and put it in your ~load-path~.
|