aboutsummaryrefslogtreecommitdiffstats
path: root/config.org
diff options
context:
space:
mode:
Diffstat (limited to 'config.org')
-rw-r--r--config.org11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.org b/config.org
index fa307a9..57a9aa9 100644
--- a/config.org
+++ b/config.org
@@ -469,6 +469,17 @@ plugin.
469 :config 469 :config
470 (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))) 470 (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode)))
471#+END_SRC 471#+END_SRC
472** helpful
473[[https://github.com/Wilfred/helpful][helpful]] is an alternative to the built-in Emacs help that provides more
474contextual information
475
476#+BEGIN_SRC emacs-lisp
477(use-package helpful
478 :ensure t
479 :bind (("C-h f" . helpful-callable)
480 ("C-h v" . helpful-variable )
481 ("C-h k" . helpful-key)))
482#+END_SRC
472* Languages 483* Languages
473** flycheck 484** flycheck
474[[https://github.com/flycheck/flycheck][flycheck]] is an on-the-fly syntax checker for many languages 485[[https://github.com/flycheck/flycheck][flycheck]] is an on-the-fly syntax checker for many languages