[emacs] org mode: show hyperlinks entirely

This commit is contained in:
Julin S 2021-12-05 11:52:33 +05:30
parent 8b4d8a80d1
commit 55d3030342

View File

@ -128,6 +128,14 @@
;; Disable auto-indentation
(setq org-adapt-indentation nil)
;
;; Don't hide hyperlink source
(setq org-descriptive-links nil)
;
;; Show all headings in an org file as folded on startup
; Either of the following two lines seem to work
;(setq org-set-startup-visibility 'overview)
(setq org-startup-folded t)
;
;; Decrease auto-indentation level from 2 in code blocks
(setq org-edit-src-content-indentation 1)
;