From 5ac6a7564cbe9399e4cd9ec74224e277362f0d7f Mon Sep 17 00:00:00 2001 From: jason Date: Thu, 15 Feb 2018 15:53:12 -0700 Subject: enable flyspell-prog-mode for prog-modes --- config.org | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 2ab18c1..89e6907 100644 --- a/config.org +++ b/config.org @@ -206,7 +206,7 @@ I use [[https://company-mode.github.io/][company-mode]] for autocompletion. :init (setq ;; Display the suggestion popup quickly - company-idle-delay 0.4 + company-idle-delay 0.1 ;; Display the suggestion popup after 1 character company-minimum-prefix-length 1) :config @@ -227,6 +227,7 @@ I use [[https://company-mode.github.io/][company-mode]] for autocompletion. (progn (company-quickhelp-mode))))) #+END_SRC + * Version Control ** Magit Use [[https://magit.vc/][magit]] to supplement emacs built in version control system @@ -490,6 +491,14 @@ contextual information :config (add-hook 'prog-mode-hook 'flycheck-mode)) #+END_SRC +** flyspell +flyspell is an on-the-fly spell checker +#+BEGIN_SRC emacs-lisp +(use-package flyspell + :ensure t + :config + (add-hook 'prog-mode-hook 'flyspell-prog-mode)) +#+END_SRC ** Python [[https://github.com/proofit404/anaconda-mode][anaconda-mode]] has support for code navagatin, docs, and completion for Python. -- cgit v1.2.1