diff options
author | dx <aryadevchavali1@gmail.com> | 2020-04-18 06:04:38 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-04-18 06:05:02 +0100 |
commit | 05ffefd7a11f4e175e4aa3c8ea56d2b3bdacb2cd (patch) | |
tree | 230f2119372025f07142701f3dad0410939f70eb | |
parent | ca38c20f566dd12ef80692b6f0b645ad64cdc95f (diff) | |
download | dotfiles-05ffefd7a11f4e175e4aa3c8ea56d2b3bdacb2cd.tar.gz dotfiles-05ffefd7a11f4e175e4aa3c8ea56d2b3bdacb2cd.tar.bz2 dotfiles-05ffefd7a11f4e175e4aa3c8ea56d2b3bdacb2cd.zip |
+binding for loading latex fragments
-rw-r--r-- | doom.d/org/config.org | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doom.d/org/config.org b/doom.d/org/config.org index 6dbccdf..b3d0f6f 100644 --- a/doom.d/org/config.org +++ b/doom.d/org/config.org @@ -385,6 +385,7 @@ Setup the agenda-files and the org-directory. *** Org keymap - I like using org-export often, so bind it to a primary bind. - Narrowing is important and I use it often, so bind that to a prefix +- Loading latex fragments is nice #+BEGIN_SRC elisp (map! ; Org keybinds :after org @@ -392,6 +393,7 @@ Setup the agenda-files and the org-directory. :localleader :desc "Org dispatch" "e" #'org-export-dispatch :desc "Org LaTeX" "E" #'org-latex-export-as-latex + :desc "Load fragments" "L" #'org-latex-preview (:prefix ("N" . "narrow") :desc "Narrow to subtree" "n" #'org-narrow-to-subtree :desc "Go out of narrow" "o" #'widen)) |