aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.org8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.org b/config.org
index 62ff8f8..ccfa3a3 100644
--- a/config.org
+++ b/config.org
@@ -457,7 +457,15 @@ plugin.
457 :config 457 :config
458 (add-to-list 'auto-mode-alist '("\\.restclient" . restclient-mode))) 458 (add-to-list 'auto-mode-alist '("\\.restclient" . restclient-mode)))
459#+END_SRC 459#+END_SRC
460** yaml
461[[https://github.com/yoshiki/yaml-mode][yaml-mode]] adds support for yaml config files
460 462
463#+BEGIN_SRC emacs-lisp
464(use-package yaml-mode
465 :ensure t
466 :config
467 (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)))
468#+END_SRC
461* Languages 469* Languages
462** flycheck 470** flycheck
463[[https://github.com/flycheck/flycheck][flycheck]] is an on-the-fly syntax checker for many languages 471[[https://github.com/flycheck/flycheck][flycheck]] is an on-the-fly syntax checker for many languages