diff options
author | noa | 2025-01-10 17:21:33 +0800 |
---|---|---|
committer | noa | 2025-01-10 17:21:33 +0800 |
commit | 7ef4f29cf11ea4bb190ced019fb2a576327af654 (patch) | |
tree | 0236330c1964ad5afd8a65f6cbed57cc8c903656 /emacs | |
parent | b2e05512bcabb3388d811c9b8ed3af364f16458e (diff) |
Give up on standardised keybindings
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/emacs/init.el b/emacs/init.el index 707af1a..32f7bd0 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -26,26 +26,6 @@ :custom (gcmh-mode t)) -;;; Modern keybindings -;; A lot of people say that you get used to emacs keybindings over time, and this is true. But i find it hard to maintain two sets of keybindings in my head: those for emacs, and those for everything else. So i think that it's best to make emacs use the same bindings as everything else. For now, we do that with wakib mode. -(use-package wakib-keys - :disabled t - :ensure t - :custom - (wakib-keys t) - - :hook - ((after-change-major-mode . wakib-update-major-mode-map) - (menu-bar-update . wakib-update-minor-mode-maps)) - - :bind (:map isearch-mode-map - ("C-f" . isearch-repeat-forward) - ("C-S-f" . isearch-repeat-backward) - ("M-;" . isearch-repeat-forward) - ("M-:" . isearch-repeat-backward) - ("C-v" . isearch-yank-kill) - ("M-d" . isearch-delete-char))) - ;; It is often useful to be able to run a command while i am already in the process of running a command in the minibuffer. This is rarely two extended commands; usually it is completion. (use-package mb-depth :custom |