summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-09-09 20:59:30 +0300
committerThanos Apollo <[email protected]>2023-09-09 20:59:30 +0300
commite0f70b1254a61299b9a6546bac31282d96969150 (patch)
tree6a2c0f7d7add276a30b8a2673fc4c0bbdaec9183
parentf83f5a601927fb9a42d5d0af25bed0302b095aaf (diff)
devtools.el: Rename & Update keybindings
-rw-r--r--.emacs.d/init.el8
-rw-r--r--.emacs.d/modules/thanos-devtools.el (renamed from .emacs.d/modules/thanos-dev.el)6
2 files changed, 7 insertions, 7 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
diff --git a/.emacs.d/modules/thanos-dev.el b/.emacs.d/modules/thanos-devtools.el
index eb8a2c0..111e8c7 100644
--- a/.emacs.d/modules/thanos-dev.el
+++ b/.emacs.d/modules/thanos-devtools.el
@@ -54,7 +54,7 @@
corfu-preview-current t
corfu-echo-mode t)
-(setq indent-tabs-mode nil)
+(setf indent-tabs-mode nil)
;; Register
(define-key global-map (kbd "C-x r d") 'bookmark-delete)
@@ -127,5 +127,5 @@
(setf gptel-api-key (password-store-get "chatgpt/api")
gptel-model 'gpt-4-32k)
-(provide 'thanos-dev)
-;;; thanos-dev.el ends here
+(provide 'thanos-devtools)
+;;; thanos-devtools.el ends here