From bbc218b06efd34e1b9e1684982e5c5dadccaf7b8 Mon Sep 17 00:00:00 2001 From: "Kaz Saita(WSL2)" Date: Mon, 6 May 2024 00:58:08 +0900 Subject: [PATCH] fix bindkey --- emacs.d/init.el | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/emacs.d/init.el b/emacs.d/init.el index b635444..92b53ea 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -1,3 +1,4 @@ + ;; init.el - part of dotfiles ;; https://git.kinoshita-lab.org/kazbo/dotfiles @@ -286,9 +287,12 @@ ) -(require 'bind-key) -(bind-key "C-t" 'other-window global-map) -(bind-key "C-h" 'delete-backward-char global-map) +(leaf bind-key + :ensure t + :config + (bind-key "C-t" 'other-window global-map) + (bind-key "C-h" 'delete-backward-char global-map)) + (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful.