Org Fixes

This commit is contained in:
2021-09-06 13:32:08 -04:00
parent 2eb4d3204d
commit 34c88cee47
2 changed files with 23 additions and 3 deletions

View File

@@ -113,6 +113,11 @@
; Python
(use-package company-jedi)
(defun my/python-mode-hook ()
(add-to-list 'company-backends 'company-jedi))
(add-hook 'python-mode-hook 'my/python-mode-hook)
; C related
(use-package company-ctags)
(use-package company-c-headers)
@@ -135,6 +140,7 @@
(use-package org-contrib)
(use-package org
:config
(require 'org-ref)
(require 'org-tempo)
(tempo-define-template
"Lab Template" '("#+TITLE: PHY324: LAB TITLE"n
@@ -190,7 +196,8 @@
org-ref-default-bibliography '("~/Documents/Bibliography/references.bib")
org-ref-pdf-directory "~/Documents/Bibliography/bibtex-pdfs/")
)
(use-package ox-pandoc
:after org)
; PDF preview etc.
(use-package pdf-tools)