about summary refs log tree commit diff
path: root/dotfiles/.emacs
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.emacs')
-rw-r--r--dotfiles/.emacs10
1 files changed, 9 insertions, 1 deletions
diff --git a/dotfiles/.emacs b/dotfiles/.emacs
index 167b02f..3beb5f3 100644
--- a/dotfiles/.emacs
+++ b/dotfiles/.emacs
@@ -146,6 +146,12 @@
   :init
   (global-corfu-mode))
 
+(use-package kind-icon
+  :ensure t
+  :after corfu
+  :config
+  (add-to-list 'corfu-margin-formatters #'kind-icon-margin-formatter))
+
 (use-package eglot
   :ensure t
   :config
@@ -186,4 +192,6 @@
 
 (eval-after-load 'dired
   '(evil-define-key 'normal dired-mode-map [mouse-2] 'dired-mouse-find-file)
-)
\ No newline at end of file
+)
+
+(setq flymake-show-diagnostics-at-end-of-line t)