From 3d262f89e04a76a78667a4fc692ae71e540b7566 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Wed, 10 Jun 2020 00:05:16 +0200 Subject: Enable inline LaTeX previews in Orgmode --- gui/conf/init.el | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'gui/conf') diff --git a/gui/conf/init.el b/gui/conf/init.el index dfc886d..a88f253 100644 --- a/gui/conf/init.el +++ b/gui/conf/init.el @@ -36,6 +36,7 @@ (set-face-attribute 'fixed-pitch nil :family "Iosevka") (set-face-attribute 'variable-pitch nil :family "Source Sans Pro" :height 1.1) +(load-library "custom-runtime-env") (load-library "akr-theme") (use-package doom-modeline @@ -93,6 +94,15 @@ (add-hook 'org-mode-hook 'visual-line-mode) +(setq org-format-latex-options (plist-put org-format-latex-options :scale 1.5)) +(evil-leader/set-key + "p" 'org-latex-preview) + +(use-package org-fragtog + :ensure t + :config + (add-hook 'org-mode-hook 'org-fragtog-mode)) + (custom-theme-set-faces 'user '(org-level-1 ((t (:family "Source Serif Pro" :weight regular :height 1.4 )))) @@ -172,6 +182,7 @@ 'org-babel-load-languages '((python . t) (shell . t) + (latex . t) (C . t))) (setq org-confirm-babel-evaluate nil) -- cgit v1.2.3