Enable the new biblio module instead of org-ref
This commit is contained in:
parent
896a13b2cd
commit
661e49ba17
8
+org.el
8
+org.el
|
@ -26,8 +26,6 @@
|
|||
:deadline future)))
|
||||
:config
|
||||
(org-super-agenda-mode))
|
||||
;; Show inline images by default
|
||||
(setq org-startup-with-inline-images t)
|
||||
;; Add timestamp to DONE task
|
||||
(setq org-log-done 'time)
|
||||
;; Print babel results to the buffer
|
||||
|
@ -39,9 +37,3 @@
|
|||
(add-to-list 'org-latex-packages-alist '("AUTO" "babel" t ("pdflatex")))
|
||||
;; Don't evaluate code blocks on export
|
||||
(setq org-export-use-babel nil)
|
||||
;; Configure org-ref
|
||||
(use-package! org-ref
|
||||
:after org
|
||||
:init
|
||||
(setq org-ref-default-bibliography '("~/Documents/Education/Other/References.bib"))
|
||||
:config)
|
||||
|
|
7
init.el
7
init.el
|
@ -79,6 +79,7 @@
|
|||
|
||||
:tools
|
||||
;;ansible
|
||||
biblio
|
||||
debugger ; FIXME stepping through code, to help you add bugs
|
||||
;;direnv
|
||||
docker
|
||||
|
@ -92,13 +93,13 @@
|
|||
;;macos ; MacOS-specific commands
|
||||
magit ; a git porcelain for Emacs
|
||||
make ; run make tasks from Emacs
|
||||
pass ; password manager for nerds
|
||||
;;pass ; password manager for nerds
|
||||
pdf ; pdf enhancements
|
||||
;;prodigy ; FIXME managing external services & code builders
|
||||
;;rgb ; creating color strings
|
||||
;;terraform ; infrastructure as code
|
||||
;;tmux ; an API for interacting with tmux
|
||||
;;upload ; map local to remote projects via ssh/ftp
|
||||
upload ; map local to remote projects via ssh/ftp
|
||||
|
||||
:lang
|
||||
;;agda ; types of types of types of types...
|
||||
|
@ -122,7 +123,7 @@
|
|||
;;hy ; readability of scheme w/ speed of python
|
||||
;;idris ;
|
||||
(java +meghanada) ; the poster child for carpal tunnel syndrome
|
||||
;;javascript ; all(hope(abandon(ye(who(enter(here))))))
|
||||
(javascript +lsp) ; all(hope(abandon(ye(who(enter(here))))))
|
||||
;;julia ; a better, faster MATLAB
|
||||
;;kotlin ; a better, slicker Java(Script)
|
||||
;;latex ; writing papers in Emacs has never been so fun
|
||||
|
|
|
@ -6,4 +6,3 @@
|
|||
;; (package! another-package :recipe (:host github :repo "username/repo"))
|
||||
;; (package! builtin-package :disable t)
|
||||
(package! org-super-agenda)
|
||||
(package! org-ref)
|
||||
|
|
Loading…
Reference in New Issue