diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-11-02 22:04:25 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-11-02 22:04:25 +0100 |
commit | 511be034b5f35cdec917214f60d4c0689436bae3 (patch) | |
tree | c4b890e9193f8da80d556a5dd4c1620e088719ba /.config/emacs | |
parent | 359f7b4803d66b1c7dd02878593bdbda2c5b2c1e (diff) |
emacs: Add an org-mode config
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/init.el | 1 | ||||
-rw-r--r-- | .config/emacs/modules/mm-org.el | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 2fac6ce..f1f4e5b 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -313,6 +313,7 @@ the buffer without saving it." (require 'mm-editing) ; Text Editing (require 'mm-keybindings) ; Keybindings (require 'mm-modeline) ; Modeline +(require 'mm-org) ; Org-Mode (require 'mm-projects) ; Project Management (require 'mm-spellcheck) ; Spell Checking (require 'mm-tetris) ; Emacs Tetris diff --git a/.config/emacs/modules/mm-org.el b/.config/emacs/modules/mm-org.el new file mode 100644 index 0000000..b4d0f31 --- /dev/null +++ b/.config/emacs/modules/mm-org.el @@ -0,0 +1,6 @@ +;;; mm-org.el --- Org-Mode configuration -*- lexical-binding: t; -*- + +(use-package org + :hook (org-mode . org-indent-mode)) + +(provide 'mm-org)
\ No newline at end of file |