2022-06-19 14:13:36 -08:00
|
|
|
;;; mitch-keybinds.el --- do keybinding things, mostly with General...
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; -----------------------------------------------------------------------------
|
|
|
|
;; There are a lot of things we do with the keyboard. Perhaps all of the
|
|
|
|
;; things, in fact. Thus, we use the `general' package for transparently
|
|
|
|
;; defining keybindings in various states. See
|
|
|
|
;; `https://github.com/noctuid/general.el' for more.
|
|
|
|
;; -----------------------------------------------------------------------------
|
|
|
|
;;; Code:
|
2022-08-24 19:15:52 -08:00
|
|
|
|
|
|
|
;; Japanese input?
|
|
|
|
(general-define-key
|
|
|
|
:states 'insert
|
|
|
|
"q" (general-key-dispatch 'self-insert-command
|
|
|
|
:timeout 0.25
|
|
|
|
"q" 'toggle-input-method))
|
2022-08-28 14:23:01 -08:00
|
|
|
;; Zoom, for bad resolutions (windows)
|
2022-06-19 14:13:36 -08:00
|
|
|
(general-define-key
|
|
|
|
"<escape>" 'keyboard-escape-quit
|
|
|
|
"C--" 'text-scale-decrease
|
|
|
|
"C-=" 'text-scale-increase)
|
2022-08-28 14:23:01 -08:00
|
|
|
;; we are not spacemacs, but we might be
|
2022-06-19 14:13:36 -08:00
|
|
|
(general-define-key
|
|
|
|
:states '(normal visual)
|
|
|
|
:prefix "SPC"
|
|
|
|
:non-normal-prefix "SPC"
|
|
|
|
"w" 'evil-window-map
|
|
|
|
"h" 'help-command
|
2022-09-29 06:18:28 -08:00
|
|
|
"b" 'switch-to-buffer
|
2022-06-21 17:04:19 -08:00
|
|
|
"g" 'magit
|
2022-06-19 14:13:36 -08:00
|
|
|
"SPC" 'evil-buffer)
|
2022-08-28 14:23:01 -08:00
|
|
|
;; SPC shortcuts for lisp. Works with anything that uses the default emacs binds
|
2022-06-19 14:13:36 -08:00
|
|
|
(general-define-key
|
|
|
|
:states '(normal visual)
|
|
|
|
:prefix-command 'eval-map-prefix
|
|
|
|
:prefix-map 'eval-map
|
|
|
|
:prefix "SPC e"
|
2022-08-08 06:34:14 -08:00
|
|
|
"l" (general-key "C-x C-e")
|
|
|
|
"b" (general-key "C-c C-e")
|
|
|
|
"r" (general-key "C-c C-v r")
|
2022-06-19 14:13:36 -08:00
|
|
|
"s" 'eshell)
|
|
|
|
|
|
|
|
(provide 'mitch-keybinds)
|
|
|
|
;;; mitch-keybinds.el ends here
|