config/emacs: add fixes for minted
This commit is contained in:
parent
413521c374
commit
4c6f9ab85d
1 changed files with 10 additions and 3 deletions
|
@ -224,12 +224,19 @@ And jumps to your `doom!' block."
|
||||||
|
|
||||||
(setq
|
(setq
|
||||||
org-latex-listings 'minted
|
org-latex-listings 'minted
|
||||||
org-latex-packages-alist '(("" "minted"))
|
org-latex-packages-alist '(("" "minted" "listingsutf8"))
|
||||||
org-latex-pdf-process
|
org-latex-pdf-process
|
||||||
'("pdflatex -shell-escape -interaction nonstopmode -output-directory \"%o\" \"%f\""
|
'("pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
|
||||||
"pdflatex -shell-escape -interaction nonstopmode -output-directory \"%o\" \"%f\"")
|
"pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f"
|
||||||
|
"pdflatex -shell-escape -interaction nonstopmode -output-directory %o %f")
|
||||||
|
org-src-fontify-natively t
|
||||||
)
|
)
|
||||||
|
|
||||||
|
(org-babel-do-load-languages
|
||||||
|
'org-babel-load-languages
|
||||||
|
'((R . t)
|
||||||
|
(latex . t)))
|
||||||
|
|
||||||
(use-package! lsp-python-ms
|
(use-package! lsp-python-ms
|
||||||
:init
|
:init
|
||||||
(setq lsp-python-ms-executable (executable-find "python-language-server")))
|
(setq lsp-python-ms-executable (executable-find "python-language-server")))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue