Load Custom Files

This commit is contained in:
2025-09-11 17:04:41 -04:00
parent 4313ddd4e8
commit f18bcfd3aa
4 changed files with 191 additions and 2 deletions

View File

@@ -94,6 +94,12 @@ Disabled for now. (May add flags to enable on specific systems)
** Emacs Paths
*** Custom loads
#+begin_src elisp :tangle yes :exports code
(add-to-list 'load-path "~/.emacs.d/lisp")
#+end_src
*** Custom.el
Ensure that the =custom.el= resides in the users' emacs directory.
@@ -472,7 +478,7 @@ We use org-ref because it provides some niceties, like doi-utils for
updating our bibliography.
#+begin_src elisp :tangle yes :exports code
(leaf org-ref :ensure t helm-bibtex pdf-tools
(leaf org-ref :ensure t helm-bibtex
:after org
:bind*
("C-c ]" . org-ref-insert-link)
@@ -720,12 +726,15 @@ taking package.
#+begin_src elisp :tangle yes :exports code
(leaf org-babel
:after org
:require ob-manim
:config
(org-babel-do-load-languages
'org-babel-load-languages
'((emacs-lisp . t)
(python . t)
(shell . t))))
(shell . t)
(manim . t)
)))
#+end_src
* Flutter