aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.org11
1 files changed, 10 insertions, 1 deletions
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.
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
232Use [[https://magit.vc/][magit]] to supplement emacs built in version control system 233Use [[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
495flyspell 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