Move org package loading up, so as to not accidentally load org from emacs.

This commit is contained in:
2022-01-21 17:42:07 +00:00
parent 515bb8dbf6
commit c3173fe4c0
2 changed files with 7 additions and 6 deletions

View File

@@ -13,6 +13,12 @@
:config :config
(load-theme 'zenburn t)) (load-theme 'zenburn t))
;;Org
(use-package org
:config
(load "~/.emacs.d/elisp/org-setup.el"))
(use-package org-ref)
;; My desktop environment ;; My desktop environment
;; EXWM ;; EXWM
;(use-package exwm ;(use-package exwm
@@ -154,11 +160,6 @@
;; Racket ;; Racket
(use-package racket-mode) (use-package racket-mode)
;;Org
(use-package org)
(use-package org-ref)
(load "~/.emacs.d/elisp/org-setup.el")
;;Ivy related stuff ;;Ivy related stuff
(use-package ivy) (use-package ivy)
(use-package ivy-bibtex) (use-package ivy-bibtex)

View File

@@ -77,7 +77,7 @@
'((sequence "TODO" "IN PROGRESS" "|" "DONE"))) '((sequence "TODO" "IN PROGRESS" "|" "DONE")))
;; org-ref ;; org-ref
(require 'org-ref) ;(require 'org-ref)
(setq reftex-default-bibliography '("~/repos/csphy/pesquisa/vis.bib")) (setq reftex-default-bibliography '("~/repos/csphy/pesquisa/vis.bib"))
(setq org-ref-bibliography-notes "~/repos/csphy/pesquisa/paper-notes.org" (setq org-ref-bibliography-notes "~/repos/csphy/pesquisa/paper-notes.org"