diff options
author | Matthew Kosarek <matt.kosarek@canonical.com> | 2024-08-06 08:01:59 -0400 |
---|---|---|
committer | Matthew Kosarek <matt.kosarek@canonical.com> | 2024-08-06 08:01:59 -0400 |
commit | 319b97597c80dd78016731f8b19edf69fefb5259 (patch) | |
tree | d50576b697a46cd8c125d43e7a45bee010b9f5dd /lisp | |
parent | f5012249239eb3b578d5040d939faa6f54f083cd (diff) |
bugfixes: new theme + fill column for markdown
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/markdown.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/markdown.el b/lisp/markdown.el index d3dc030..a95b3c8 100644 --- a/lisp/markdown.el +++ b/lisp/markdown.el @@ -13,5 +13,8 @@ :config (setq markdown-fontify-code-blocks-natively t)) +(add-hook 'markdown-mode-hook '(lambda () (setq fill-column 80))) +(add-hook 'markdown-mode-hook 'auto-fill-mode) + (provide 'markdown) ;;; markdown.el ends here |