Enable org-mode

This commit is contained in:
Dave Gallant
2021-12-05 20:47:42 -05:00
parent 3cc296003e
commit 26a7d64b2a
2 changed files with 7 additions and 2 deletions

View File

@@ -332,7 +332,6 @@ in
magit
markdown-mode
markdown-toc
org-bullets
org-superstar
ox-pandoc
ripgrep

View File

@@ -26,6 +26,7 @@
(setq create-lockfiles nil)
;; Enable Evil
(setq evil-want-C-i-jump nil)
(require 'evil)
(evil-mode 1)
@@ -59,7 +60,6 @@
;; Disable some GUI distractions.
(tool-bar-mode -1)
(menu-bar-mode -1)
(blink-cursor-mode 0)
;; Enable highlighting of current line.
@@ -87,3 +87,9 @@
;; An easier way to toggle comments
(evil-commentary-mode)
;; Enable transient mark mode
(transient-mark-mode 1)
;;;;Org mode configuration
(require 'org)