From 833352540f806c2f4afa5c927c516442633c32bf Mon Sep 17 00:00:00 2001 From: Rob Harbaugh Date: Mon, 17 Nov 2025 21:39:57 -0500 Subject: [PATCH] tinkering with org mode styling --- init.el | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 2ab7144..cb60ff3 100644 --- a/init.el +++ b/init.el @@ -98,7 +98,7 @@ (use-package consult-projectile :ensure t - :bind (("C-c h" . consult-projectile)))[O + :bind (("C-c h" . consult-projectile))) ;;icons are required for modeline (use-package all-the-icons @@ -134,3 +134,26 @@ (magit-auto-revert-mode nil) ;; Use default terminal for SSH (if relevant) (magit-process-find-password-functions '(magit-process-password-auth-source))) + +(defun rh/org-mode-setup () + (org-indent-mode) + (variable-pitch-mode 1) + (auto-fill-mode 0) + (visual-line-mode 1)) + +(use-package org + :hook (org-mode . rh/org-mode-setup) + :config + (setq org-ellipsis " ▾")) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(package-selected-packages nil)) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + )