mirror of
https://github.com/larstvei/dot-emacs.git
synced 2024-11-26 07:28:31 +00:00
set fill-column for markdown
This commit is contained in:
parent
817a32bfc8
commit
bb5a7b1626
7
init.org
7
init.org
@ -1192,11 +1192,16 @@
|
|||||||
|
|
||||||
* Markdown
|
* Markdown
|
||||||
|
|
||||||
|
Markdown is pretty nice, especially when collaborating with others (as most
|
||||||
|
people don't use org), and nicer still when combined with [[https://pandoc.org/][Pandoc]]! I set
|
||||||
|
=fill-column= to 72 as it's
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
;; Emacs Major mode for Markdown-formatted files
|
;; Emacs Major mode for Markdown-formatted files
|
||||||
(use-package markdown-mode
|
(use-package markdown-mode
|
||||||
:defer t)
|
:defer t
|
||||||
|
:hook (markdown-mode . (lambda () (setq fill-column 72))))
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user