summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2025-07-09 19:38:29 +0100
committerBlake Romero <blake@blkrom.com>2025-07-09 19:40:31 +0100
commit98c10df33c5b581ab088953bbdccc81592919a2b (patch)
tree6153bc28cef722b6a42dac46c500e8db15d7490f
parent10267a984a56be214e8cd96987039502bedc4ac1 (diff)
Add global file action kebindings
-rw-r--r--emacs-config.org7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org
index c567133..ca05949 100644
--- a/emacs-config.org
+++ b/emacs-config.org
@@ -76,3 +76,10 @@ Enable which-key that displays a pop-up window of posisble keybindings sequences
#+begin_src elisp
(which-key-mode)
#+end_src
+
+* Global Keybindings
+File actions.
+#+begin_src elisp
+ (keymap-global-set "C-x x R" #'rename-visited-file)
+ (keymap-global-set "C-x x D" #'delete-file)
+#+end_src