src.nth.io/

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-05-26 07:36:03 -0500
committerLuke Hoersten <[email protected]>2026-05-26 07:36:03 -0500
commit877b51e7252ad34b57d03474299303fcb2562151 (patch)
treef455952ed1f05ed8822a96c68da374e40d6701ca
parent5bed487db4f6d2942a7cf63b2fa7f0ef6eeb0650 (diff)
Install markdown-indent-mode and enable in markdown-mode.HEADmain
-rw-r--r--init.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/init.el b/init.el
index 6b5f9ff..c3f5e97 100644
--- a/init.el
+++ b/init.el
@@ -105,6 +105,7 @@
;; language modes
markdown-mode ; markdown editing
+ markdown-indent-mode ; indentation for markdown lists
terraform-mode ; Terraform/HCL editing
emmet-mode ; HTML/CSS abbreviation expansion
json-reformat ; JSON pretty-printing
@@ -151,6 +152,7 @@
;;; markdown-mode
(setq-default markdown-command "pandoc -f gfm")
+(add-hook 'markdown-mode-hook 'markdown-indent-mode)
;;; html-mode