summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.emacs.d/init.el4
-rw-r--r--.emacs.d/modules/thanos-tools.el4
2 files changed, 5 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index aa9577f..381ad87 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -45,13 +45,15 @@
(global-set-key (kbd "C-c a") 'thanos/applications-map)
(define-prefix-command 'Create)
-(define-key thanos/applications-map (kbd "C-c") 'Create)
+(define-key 'thanos/applications-map (kbd "C-c") 'Create)
(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")
+(setq disabled-command-function nil) ;; enable all commands
+
(require 'thanos-packages) ;; List packages and install them
(require 'thanos-shells) ;; vterm, eshell, eat configuration
(require 'thanos-aesthetics) ;; minibuffer and theming configuration
diff --git a/.emacs.d/modules/thanos-tools.el b/.emacs.d/modules/thanos-tools.el
index 974baf3..9e444c3 100644
--- a/.emacs.d/modules/thanos-tools.el
+++ b/.emacs.d/modules/thanos-tools.el
@@ -1,4 +1,4 @@
-;;; thanos-dev.el --- Developer Tools Configuration -*- lexical-binding: t; -*-
+;;; thanos-tools.el --- Tools Configuration -*- lexical-binding: t; -*-
;; Copyright (C) 2023 Thanos Apollo
@@ -147,4 +147,4 @@
gptel-model 'gpt-4-32k)
(provide 'thanos-tools)
-;;; thanos-devtools.el ends here
+;;; thanos-tools.el ends here