From 1e93748f271c6325bbac33cb1c274a5623de7fe6 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Mon, 25 Aug 2025 14:49:18 -0500 Subject: [PATCH 1/3] Updating Doom Emacs init.el --- .config/doom/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/doom/init.el b/.config/doom/init.el index 6110eb0..a5cd3f9 100644 --- a/.config/doom/init.el +++ b/.config/doom/init.el @@ -154,7 +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 + (org +pretty) ; organize your plain life in plain text ;;php ; perl's insecure younger brother ;;plantuml ; diagrams for confusing people more ;;graphviz ; diagrams for confusing yourself even more From 16eadd5c9dce143bb2b27447eb197b24862449d3 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Mon, 25 Aug 2025 15:39:57 -0500 Subject: [PATCH 2/3] Removing Doom's dashboard, using vterm as initial buffer now. --- .config/doom/config.el | 7 ++++++- .config/doom/init.el | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.config/doom/config.el b/.config/doom/config.el index 9e0b8d9..4a0bb51 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -56,7 +56,8 @@ ;; change `org-directory'. It must be set before org loads! (setq org-directory "~/nc/Org/") - +(setq org-modern-table-vertical 1) +(setq org-modern-table t) ;; Whenever you reconfigure a package, make sure to wrap your config in an ;; `after!' block, otherwise Doom's defaults may override your settings. E.g. @@ -89,3 +90,7 @@ ;; ;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how ;; they are implemented. + +(setq confirm-kill-emacs nil) + +(setq initial-buffer-choice 'vterm) diff --git a/.config/doom/init.el b/.config/doom/init.el index a5cd3f9..330d9be 100644 --- a/.config/doom/init.el +++ b/.config/doom/init.el @@ -31,7 +31,7 @@ :ui ;;deft ; notational velocity for Emacs doom ; what makes DOOM look the way it does - doom-dashboard ; a nifty splash screen for Emacs + ;;doom-dashboard ; a nifty splash screen for Emacs ;;doom-quit ; DOOM quit-message prompts when you quit Emacs ;;(emoji +unicode) ; 🙂 hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW From 5129a94198ec85e10c0032a249761206aa1524c0 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Mon, 25 Aug 2025 15:44:50 -0500 Subject: [PATCH 3/3] Using 'eshell' as initial buffer. --- .config/doom/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/doom/config.el b/.config/doom/config.el index 4a0bb51..3f57e0e 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -93,4 +93,4 @@ (setq confirm-kill-emacs nil) -(setq initial-buffer-choice 'vterm) +(setq initial-buffer-choice 'eshell)