diff options
| author | jason | 2018-02-15 15:53:12 -0700 |
|---|---|---|
| committer | jason | 2018-02-15 15:53:12 -0700 |
| commit | 5ac6a7564cbe9399e4cd9ec74224e277362f0d7f (patch) | |
| tree | 21f2651ee5256a654343f0c54899eeeedc6c297d | |
| parent | 641c67a117bdd9e73df6d093f80525837d2b26b0 (diff) | |
| download | dotemacs-5ac6a7564cbe9399e4cd9ec74224e277362f0d7f.tar.gz dotemacs-5ac6a7564cbe9399e4cd9ec74224e277362f0d7f.zip | |
enable flyspell-prog-mode for prog-modes
| -rw-r--r-- | config.org | 11 |
1 files changed, 10 insertions, 1 deletions
| @@ -206,7 +206,7 @@ I use [[https://company-mode.github.io/][company-mode]] for autocompletion. | |||
| 206 | :init | 206 | :init |
| 207 | (setq | 207 | (setq |
| 208 | ;; Display the suggestion popup quickly | 208 | ;; Display the suggestion popup quickly |
| 209 | company-idle-delay 0.4 | 209 | company-idle-delay 0.1 |
| 210 | ;; Display the suggestion popup after 1 character | 210 | ;; Display the suggestion popup after 1 character |
| 211 | company-minimum-prefix-length 1) | 211 | company-minimum-prefix-length 1) |
| 212 | :config | 212 | :config |
| @@ -227,6 +227,7 @@ I use [[https://company-mode.github.io/][company-mode]] for autocompletion. | |||
| 227 | (progn | 227 | (progn |
| 228 | (company-quickhelp-mode))))) | 228 | (company-quickhelp-mode))))) |
| 229 | #+END_SRC | 229 | #+END_SRC |
| 230 | |||
| 230 | * Version Control | 231 | * Version Control |
| 231 | ** Magit | 232 | ** Magit |
| 232 | Use [[https://magit.vc/][magit]] to supplement emacs built in version control system | 233 | Use [[https://magit.vc/][magit]] to supplement emacs built in version control system |
| @@ -490,6 +491,14 @@ contextual information | |||
| 490 | :config | 491 | :config |
| 491 | (add-hook 'prog-mode-hook 'flycheck-mode)) | 492 | (add-hook 'prog-mode-hook 'flycheck-mode)) |
| 492 | #+END_SRC | 493 | #+END_SRC |
| 494 | ** flyspell | ||
| 495 | flyspell is an on-the-fly spell checker | ||
| 496 | #+BEGIN_SRC emacs-lisp | ||
| 497 | (use-package flyspell | ||
| 498 | :ensure t | ||
| 499 | :config | ||
| 500 | (add-hook 'prog-mode-hook 'flyspell-prog-mode)) | ||
| 501 | #+END_SRC | ||
| 493 | ** Python | 502 | ** Python |
| 494 | [[https://github.com/proofit404/anaconda-mode][anaconda-mode]] has support for code navagatin, docs, and completion for Python. | 503 | [[https://github.com/proofit404/anaconda-mode][anaconda-mode]] has support for code navagatin, docs, and completion for Python. |
| 495 | 504 | ||