aboutsummaryrefslogtreecommitdiff
path: root/emacs/emacs.el
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2025-10-16 21:46:28 +0200
committeralexpdp7 <alex@corcoles.net>2025-10-16 21:48:32 +0200
commitf0f7b9d6e74e48b62785618bad46771c379b2a58 (patch)
treec10e801940f6a0d03a1262f8c388c69345ae7fb8 /emacs/emacs.el
parenta25ebe62e97b3859aa4ce1a70cf84ae8144d594b (diff)
Enable Kitty Keyboard Protocol support
Solves issues with ¿, allows using the super key!
Diffstat (limited to 'emacs/emacs.el')
-rw-r--r--emacs/emacs.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs/emacs.el b/emacs/emacs.el
index ecdb1061..ace05533 100644
--- a/emacs/emacs.el
+++ b/emacs/emacs.el
@@ -43,6 +43,13 @@
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
+;; I use Wezterm, that supports the Kitty Keyboard Protocol.
+;; Using this fixes ¿ and lets Emacs use super, for example.
+(use-package kkp
+ :ensure t
+ :config
+ (global-kkp-mode +1))
+
;; Install xclip so cutting/copying in Emacs on a terminal affects the graphical clipboard
(use-package xclip
:ensure t