diff options
author | Thanos Apollo <[email protected]> | 2023-09-06 19:48:14 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-09-06 19:48:14 +0300 |
commit | d48e8cb136481bc7ab03f680105098c0f12d71a9 (patch) | |
tree | 41f45f579a241bedbee9f3d8305d424b2e2d2e03 | |
parent | d98b4808a2a38db1732f7472d8d16613af9e5a97 (diff) |
emacs: (commands) create text scratch as org-mode
-rw-r--r-- | .emacs.d/modules/thanos-commands.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.emacs.d/modules/thanos-commands.el b/.emacs.d/modules/thanos-commands.el index 6504802..8b3407e 100644 --- a/.emacs.d/modules/thanos-commands.el +++ b/.emacs.d/modules/thanos-commands.el @@ -50,8 +50,7 @@ "Create a scratch buffer." (interactive) (switch-to-buffer (get-buffer-create "*Text Scratch*")) - (markdown-mode) - (gptel-mode)) + (org-mode)) (define-key Create (kbd "t") 'create-text-scratch) |