Commit 58bf101ebbab

Vincent Demeester <vincent@sbr.pm>
2025-10-20 22:17:06
tools/emacs: add kkp for terminal
This should make it easier to work from terminal, for example for aomi. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent e053580
Changed files (2)
home
common
tools
emacs
home/common/dev/emacs.nix
@@ -87,6 +87,7 @@ let
       # jiralib2
       json-mode
       kubed
+      kkp
       # ligature
       macrostep
       magit
tools/emacs/init.el
@@ -344,6 +344,10 @@ minibuffer, even without explicitly focusing it."
       (display-line-numbers-mode)))
   :bind ("<f7>" . vde/toggle-line-numbers))
 
+(use-package kkp
+  :if (not (display-graphic-p))
+  :hook (after-init . global-kkp-mode))
+
 (use-package helpful
   :unless noninteractive
   :bind (("C-h f" . helpful-callable)