Add shell command keybindings

This commit is contained in:
Jeremy Dormitzer 2021-02-20 22:01:15 -05:00
parent e041bd724b
commit 68e30e2455

View File

@ -16,6 +16,9 @@
(use-package simple
:straight (:type built-in)
:general
(leader-map "!" #'shell-command
"|" #'shell-command-on-region
";" #'async-shell-command)
(normal special-mode-map
"gr" #'revert-buffer
"q" #'quit-window)
@ -23,4 +26,9 @@
"gr" #'revert-buffer
"q" #'quit-window))
(use-package shell
:straight (:type built-in)
:general
(normal shell-mode-map "q" #'bury-buffer))
(provide 'init-built-ins)