From e588781d78ea11a999c75dad78d5cbb420559e95 Mon Sep 17 00:00:00 2001 From: oreodave Date: Tue, 1 Oct 2019 11:23:04 +0100 Subject: +hook for org mode to turn on visual line mode I like visual line mode, and sometimes when exporting text to another app auto fill can't satisfy the needs. Thus visual line mode to the rescue! --- doom.d/config.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doom.d') diff --git a/doom.d/config.org b/doom.d/config.org index d475503..4f756b8 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -364,11 +364,12 @@ My docsets are stored in .docsets for ease of use *** Org #+BEGIN_SRC emacs-lisp (after! org + (add-hook 'org-mode-hook #'visual-line-mode) (map! ; Org keybinds :map org-mode-map (:localleader :desc "Org dispatch" "ee" 'org-export-dispatch) - ) + )) #+END_SRC I like using the org dispatch facilities more than the default export keybinds in Doom, so I need this binding -- cgit v1.2.3-13-gbd6f