Remove bibliography management functionality
This commit is contained in:
@@ -28,9 +28,6 @@
|
|||||||
;; Keybindings for next/previous buffer
|
;; Keybindings for next/previous buffer
|
||||||
(map! :n "C-c j" #'previous-buffer)
|
(map! :n "C-c j" #'previous-buffer)
|
||||||
(map! :n "C-c k" #'next-buffer)
|
(map! :n "C-c k" #'next-buffer)
|
||||||
;; Keybindings for citar
|
|
||||||
(map! :leader :n "n B" #'citar-open-files
|
|
||||||
:desc "Open associated PDF with bibliography entry")
|
|
||||||
;; Keybindings for PlatformIO
|
;; Keybindings for PlatformIO
|
||||||
(map! :after platformio-mode
|
(map! :after platformio-mode
|
||||||
:map platformio-mode-map
|
:map platformio-mode-map
|
||||||
|
|||||||
19
+org.el
19
+org.el
@@ -95,10 +95,6 @@
|
|||||||
(use-package! engrave-faces-latex
|
(use-package! engrave-faces-latex
|
||||||
:after ox-latex)
|
:after ox-latex)
|
||||||
(setq org-latex-src-block-backend 'engraved)
|
(setq org-latex-src-block-backend 'engraved)
|
||||||
;; Set up bibliography management
|
|
||||||
(setq org-cite-global-bibliography '("~/Documents/Uni/Thesis/docs/bibliography.bib")
|
|
||||||
citar-bibliography org-cite-global-bibliography
|
|
||||||
citar-library-paths '("~/Documents/Uni/Thesis/bibliography"))
|
|
||||||
;; Add citeproc and metadata-file options to ox-pandoc
|
;; Add citeproc and metadata-file options to ox-pandoc
|
||||||
(after! ox-pandoc
|
(after! ox-pandoc
|
||||||
(add-to-list 'org-pandoc-valid-options 'citeproc)
|
(add-to-list 'org-pandoc-valid-options 'citeproc)
|
||||||
@@ -120,17 +116,6 @@
|
|||||||
:file "~/Notes/Recipes.org"
|
:file "~/Notes/Recipes.org"
|
||||||
:type entry
|
:type entry
|
||||||
:template ("%(org-chef-get-recipe-from-url)"))
|
:template ("%(org-chef-get-recipe-from-url)"))
|
||||||
("Reference" :keys "r"
|
|
||||||
:type entry
|
|
||||||
:file "~/Documents/Uni/Thesis/docs/Bibliography.org"
|
|
||||||
:function org-goto
|
|
||||||
:fetch-bibtex (lambda () (org-capture-ref-process-capture))
|
|
||||||
:org-entry (lambda () (org-capture-ref-get-org-entry))
|
|
||||||
:template
|
|
||||||
("%{fetch-bibtex}* %?%{space}%(org-capture-ref-get-bibtex-field :title)"
|
|
||||||
"#+begin_src bibtex"
|
|
||||||
"%(org-capture-ref-get-bibtex-field :bibtex-string)"
|
|
||||||
"#+end_src")))))
|
|
||||||
;; Fix org-chef scraping
|
;; Fix org-chef scraping
|
||||||
(setq org-chef-prefer-json-ld t)
|
(setq org-chef-prefer-json-ld t)
|
||||||
;; Get the current state of org-pomodoro
|
;; Get the current state of org-pomodoro
|
||||||
@@ -185,10 +170,6 @@
|
|||||||
(add-hook! 'org-mode-hook 'org-fragtog-mode)
|
(add-hook! 'org-mode-hook 'org-fragtog-mode)
|
||||||
;; Auto tangle on save
|
;; Auto tangle on save
|
||||||
(add-hook! 'org-mode-hook 'org-auto-tangle-mode)
|
(add-hook! 'org-mode-hook 'org-auto-tangle-mode)
|
||||||
;; Save bibtex to annotated bibliography with category selection
|
|
||||||
(setq org-goto-interface 'outline-path-completion
|
|
||||||
org-goto-max-level 1)
|
|
||||||
(use-package! org-capture-ref)
|
|
||||||
;; HACK Fix search folded sections
|
;; HACK Fix search folded sections
|
||||||
(setq org-fold-core-style 'overlays)
|
(setq org-fold-core-style 'overlays)
|
||||||
(evil-select-search-module 'evil-search-module 'evil-search)
|
(evil-select-search-module 'evil-search-module 'evil-search)
|
||||||
|
|||||||
2
init.el
2
init.el
@@ -84,7 +84,7 @@
|
|||||||
|
|
||||||
:tools
|
:tools
|
||||||
;;ansible
|
;;ansible
|
||||||
biblio ; Writes a PhD for you (citation needed)
|
;;biblio ; Writes a PhD for you (citation needed)
|
||||||
debugger ; FIXME stepping through code, to help you add bugs
|
debugger ; FIXME stepping through code, to help you add bugs
|
||||||
direnv
|
direnv
|
||||||
;;docker
|
;;docker
|
||||||
|
|||||||
@@ -19,11 +19,6 @@
|
|||||||
(package! org-auto-tangle)
|
(package! org-auto-tangle)
|
||||||
;; Enable LaTeX previews automatically
|
;; Enable LaTeX previews automatically
|
||||||
(package! org-fragtog)
|
(package! org-fragtog)
|
||||||
;; Fetch and save bibtex from Firefox
|
|
||||||
(package! asoc :recipe (:host github :repo "troyp/asoc.el"))
|
|
||||||
(package! doct :recipe (:host github :repo "progfolio/doct"))
|
|
||||||
(package! persid :recipe (:host github :repo "rougier/persid"))
|
|
||||||
(package! org-capture-ref :recipe (:host github :repo "yantar92/org-capture-ref"))
|
|
||||||
;; Arduino development
|
;; Arduino development
|
||||||
(package! platformio-mode)
|
(package! platformio-mode)
|
||||||
;; Light theme
|
;; Light theme
|
||||||
|
|||||||
Reference in New Issue
Block a user