diff options
author | Case Duckworth | 2021-03-31 17:58:52 -0500 |
---|---|---|
committer | Case Duckworth | 2021-03-31 17:58:52 -0500 |
commit | a09e80daf3836eb206eb9cedf75e95fc6496c7a6 (patch) | |
tree | 61c109c64ba45fc2fdecf744e9afa09afce6dc61 | |
parent | Add `refresh-emacs' (diff) | |
download | emacs-a09e80daf3836eb206eb9cedf75e95fc6496c7a6.tar.gz emacs-a09e80daf3836eb206eb9cedf75e95fc6496c7a6.zip |
Add keybindings
-rw-r--r-- | init.el | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/init.el b/init.el index dbf660f..0a09285 100644 --- a/init.el +++ b/init.el | |||
@@ -369,10 +369,20 @@ | |||
369 | 369 | ||
370 | ;;;; CRUX | 370 | ;;;; CRUX |
371 | (setup (:straight crux) | 371 | (setup (:straight crux) |
372 | (:acdw/map "M-o" crux-other-window-or-switch-buffer | 372 | (:acdw/map "M-o" crux-other-window-or-switch-buffer |
373 | "C-k" crux-kill-and-join-forward) | 373 | "C-k" crux-kill-and-join-forward |
374 | "C-o" crux-smart-open-line-above | ||
375 | "C-j" crux-smart-open-line | ||
376 | "C-M-\\" crux-cleanup-buffer-or-region | ||
377 | "C-c i" crux-find-user-init-file) | ||
374 | (crux-reopen-as-root-mode +1)) | 378 | (crux-reopen-as-root-mode +1)) |
375 | 379 | ||
380 | (setup eshell | ||
381 | (:acdw/map "C-z s" crux-visit-shell-buffer) | ||
382 | (:when-loaded | ||
383 | (:bind "C-z s" #'bury-buffer) | ||
384 | (:bind "C-d" #'bury-buffer))) | ||
385 | |||
376 | ;;;; AVY ... & friends | 386 | ;;;; AVY ... & friends |
377 | (setup (:straight avy) | 387 | (setup (:straight avy) |
378 | (:acdw/map "C-:" avy-goto-char | 388 | (:acdw/map "C-:" avy-goto-char |