tinkering with org mode styling
This commit is contained in:
25
init.el
25
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.
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user