diff options
author | Thanos Apollo <[email protected]> | 2023-09-09 20:59:30 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-09-09 20:59:30 +0300 |
commit | e0f70b1254a61299b9a6546bac31282d96969150 (patch) | |
tree | 6a2c0f7d7add276a30b8a2673fc4c0bbdaec9183 /.emacs.d/init.el | |
parent | f83f5a601927fb9a42d5d0af25bed0302b095aaf (diff) |
devtools.el: Rename & Update keybindings
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 3bfb6b5..de51c25 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -18,8 +18,8 @@ (define-prefix-command 'Create) (define-key thanos/applications-map (kbd "C-c") 'Create) -(global-set-key (kbd "<escape>") 'keyboard-escape-quit) - +(define-key global-map (kbd "<escape>") 'keyboard-escape-quit) +(define-key global-map (kbd "M-<backspace>") 'backward-kill-sexp) (add-to-list 'load-path "~/.emacs.d/modules") @@ -31,9 +31,9 @@ (require 'thanos-commands) ;; Misc commands to manage vm's and others (require 'thanos-books) ;; pdf-tools, nov-mode (require 'thanos-chat) ;; telega, erc, ement -(require 'thanos-dev) ;; Completions, programming lang specific customization, chatgpt etc. +(require 'thanos-devtools) ;; Completions, programming lang specific customization, chatgpt etc. (require 'thanos-dired) ;; Dired theming and custom functions -(require 'thanos-mu4e) ;; email +(require 'thanos-mu4e) ;; Email client (require 'thanos-multimedia) ;; emms, yeetube (require 'thanos-elfeed) ;; RSS |