✨ Add basic markdown configuration
This commit is contained in:
parent
8bd042e9f6
commit
1e51334059
1 changed files with 13 additions and 0 deletions
13
config.org
13
config.org
|
@ -1916,6 +1916,19 @@ Original Source: [[https://www.emacswiki.org/emacs/ts-mode.el][EmacsWiki: ts-mod
|
||||||
("\\.tsconfig\\'" . ts-mode)))
|
("\\.tsconfig\\'" . ts-mode)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
** Markdown
|
||||||
|
|
||||||
|
Markdown mode customizations.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package markdown-mode
|
||||||
|
:mode "\\.md\\'"
|
||||||
|
:hook ((markdown-mode . visual-line-mode)
|
||||||
|
(markdown-mode . (lambda () (display-line-numbers-mode -1)))
|
||||||
|
(markdown-mode . variable-pitch-mode)
|
||||||
|
(markdown-mode . visual-fill-column-mode)))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
* Emacs Multimedia System (EMMS)
|
* Emacs Multimedia System (EMMS)
|
||||||
|
|
||||||
For notes, tasks, writing, and countless other things there is org-mode.
|
For notes, tasks, writing, and countless other things there is org-mode.
|
||||||
|
|
Loading…
Reference in a new issue