diff options
| -rw-r--r-- | emacs/emacs.el | 7 |
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 |
