diff options
| author | Blake Romero <blake@blkrom.com> | 2025-10-01 21:36:28 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-10-01 21:36:28 +0100 |
| commit | 92c30edd406679b008949904d4a4f8e7c72c2cc5 (patch) | |
| tree | a5bd7b82768b62787d06e82605648a74deb5e2de | |
| parent | 0fd233af2790846ad17eeb603b648f4a1adc0307 (diff) | |
Add kind-icon package
| -rw-r--r-- | emacs-config.org | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index 2aa1bee..55a02a4 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -1735,3 +1735,18 @@ Devdocs is a documentation viewer for Emacs similar to the built-in Info browser :commands (dired-sidebar-toggle-sidebar) :bind ("C-c o" . dired-sidebar-toggle-sidebar)) #+end_src + +** Kind Icons +https://github.com/jdtsmith/kind-icon +Completion kind text/icon prefix labelling for emacs in-region completion. +#+begin_src elisp + (use-package kind-icon + :ensure t + :after corfu + :custom + (kind-icon-blend-background t) + (kind-icon-default-face 'corfu-default) ; only needed with blend-background + :config + (add-to-list 'corfu-margin-formatters #'kind-icon-margin-formatter)) +#+end_src + |
