diff options
author | Thanos Apollo <[email protected]> | 2023-10-09 09:22:40 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-09 09:23:17 +0300 |
commit | f22258f532a665eb76632390128334da81dd26f6 (patch) | |
tree | 662b64da02eb28d8197918e2fc05a6d40eb6dccd /.emacs.d/init.el | |
parent | 5ede01db492c1a69d74dc73ec733189afd681b6d (diff) |
emacs:(init) Enable all commands
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 4 |
1 files changed, 3 insertions, 1 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 |