From 92c30edd406679b008949904d4a4f8e7c72c2cc5 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Wed, 1 Oct 2025 21:36:28 +0100 Subject: Add kind-icon package --- emacs-config.org | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'emacs-config.org') 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 + -- cgit