aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason2017-10-26 17:29:12 -0600
committerjason2017-10-26 17:29:12 -0600
commitfcf0f04c3053f0ca98cfe4a7e068c5b9af51394a (patch)
tree9226f13e94776330c09dff9190a57599b8200ab1
parent89c66c426ab3fb11a956f12ec069869096e794f1 (diff)
parent58ad3d7678a5a5f837426b1c6bb2952dc9d3b5a8 (diff)
downloaddotemacs-fcf0f04c3053f0ca98cfe4a7e068c5b9af51394a.tar.gz
dotemacs-fcf0f04c3053f0ca98cfe4a7e068c5b9af51394a.zip
Merge branch 'master' of beehive.io:jason/dotemacs
-rw-r--r--config.org8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.org b/config.org
index db51e22..29b7107 100644
--- a/config.org
+++ b/config.org
@@ -458,7 +458,15 @@ plugin.
458 :config 458 :config
459 (add-to-list 'auto-mode-alist '("\\.restclient" . restclient-mode))) 459 (add-to-list 'auto-mode-alist '("\\.restclient" . restclient-mode)))
460#+END_SRC 460#+END_SRC
461** yaml
462[[https://github.com/yoshiki/yaml-mode][yaml-mode]] adds support for yaml config files
461 463
464#+BEGIN_SRC emacs-lisp
465(use-package yaml-mode
466 :ensure t
467 :config
468 (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)))
469#+END_SRC
462* Languages 470* Languages
463** flycheck 471** flycheck
464[[https://github.com/flycheck/flycheck][flycheck]] is an on-the-fly syntax checker for many languages 472[[https://github.com/flycheck/flycheck][flycheck]] is an on-the-fly syntax checker for many languages