Skip to content

Commit

Permalink
Install markdown system package automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
daviderestivo committed Jul 20, 2019
1 parent 8f63634 commit 8255aa9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions conf/packages.el
Expand Up @@ -610,6 +610,7 @@
(use-package markdown-mode
:ensure t
:defer t
:ensure-system-package (markdown . "brew install markdown || sudo apt-get install markdown")
:hook
(markdown-mode . (lambda ()
(setq show-trailing-whitespace t)
Expand All @@ -619,6 +620,11 @@
(set-face-attribute 'markdown-code-face nil :background "#282C34")
(set-face-attribute 'markdown-code-face nil :foreground "#ABB2BF"))

;; markdown-toc
(use-package markdown-toc
:ensure t
:defer t)

;; yasnippet
(use-package yasnippet
:ensure t
Expand Down

0 comments on commit 8255aa9

Please sign in to comment.