From 87809849fa12f08e756e19bd659aa723d2ab2147 Mon Sep 17 00:00:00 2001 From: Inhji Date: Mon, 5 Feb 2024 13:23:38 +0100 Subject: [PATCH] emacs: disable org-journal, use org-capture --- config/dot_config/doom/init.el | 3 +-- config/dot_config/doom/packages.el | 4 +++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/dot_config/doom/init.el b/config/dot_config/doom/init.el index 360a34d..65c0e31 100644 --- a/config/dot_config/doom/init.el +++ b/config/dot_config/doom/init.el @@ -154,8 +154,7 @@ ;;nim ; python + lisp at the speed of c ;;nix ; I hereby declare "nix geht mehr!" ;;ocaml ; an objective camel - (org ; organize your plain life in plain text - +journal) + org ; organize your plain life in plain text php ; perl's insecure younger brother ;;plantuml ; diagrams for confusing people more ;;purescript ; javascript, but functional diff --git a/config/dot_config/doom/packages.el b/config/dot_config/doom/packages.el index 4ea1a09..138fd7b 100644 --- a/config/dot_config/doom/packages.el +++ b/config/dot_config/doom/packages.el @@ -8,10 +8,12 @@ ;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror: ;; (package! some-package) +;; To disable an installed package: +;; (package! some-package :disable t) (package! org-modern) (package! org-auto-tangle) -(package! org-journal) +(package! org-journal :disable t) ;; To install a package directly from a remote git repo, you must specify a ;; `:recipe'. You'll find documentation on what `:recipe' accepts here: