feat(emacs): Change vanilla emacs to straight.el

This commit is contained in:
js0ny 2025-03-14 16:06:52 +00:00
parent cfc5fc14af
commit 918f8a6ed5
5 changed files with 38 additions and 49 deletions

View file

@ -6,7 +6,7 @@
;; Org General
(use-package org
:ensure nil ;; Use Emacs built-in Org Mode
:straight (:type built-in) ;; Tell straight to not install org
:config
(setq org-log-done 'time)
(setq org-startup-indented nil)
@ -161,11 +161,11 @@
;; Run source block with C-c C-c
;; Add supports for non-elisp langs
(use-package ob-python
:ensure nil ; Part of Org Mode
:straight (:type built-in) ; Part of Org Mode
:after org)
(use-package ob-C ;; C++ support is integrated in ob-C
:ensure nil ; Part of Org Mode
:straight (:type built-in) ; Part of Org Mode
:after org)
(org-babel-do-load-languages