Close tags automatically in org mode
This commit is contained in:
parent
e24b160411
commit
cd12d6361d
9
+org.el
9
+org.el
|
@ -135,3 +135,12 @@
|
||||||
org-noter-default-heading-title " "))
|
org-noter-default-heading-title " "))
|
||||||
;; Increase the latex preview size
|
;; Increase the latex preview size
|
||||||
(setq org-format-latex-options (plist-put org-format-latex-options :scale 3.0))
|
(setq org-format-latex-options (plist-put org-format-latex-options :scale 3.0))
|
||||||
|
;; Close tags automatically
|
||||||
|
(after! smartparens
|
||||||
|
(sp-with-modes 'org-mode
|
||||||
|
(sp-local-pair "*" "*")
|
||||||
|
(sp-local-pair "_" "_")
|
||||||
|
(sp-local-pair "/" "/")
|
||||||
|
(sp-local-pair "~" "~")
|
||||||
|
(sp-local-pair "=" "=")
|
||||||
|
(sp-local-pair "$" "$")))
|
||||||
|
|
Loading…
Reference in New Issue