aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason2018-03-01 21:59:32 -0700
committerjason2018-03-01 21:59:32 -0700
commit9c39d59560ff47c64885ff722b64f5f435e71730 (patch)
tree4337eec18d07603ef13fd874d51fee4640efb555
parent5ac6a7564cbe9399e4cd9ec74224e277362f0d7f (diff)
downloaddotemacs-9c39d59560ff47c64885ff722b64f5f435e71730.tar.gz
dotemacs-9c39d59560ff47c64885ff722b64f5f435e71730.zip
fix typo
-rw-r--r--config.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.org b/config.org
index 89e6907..19b1529 100644
--- a/config.org
+++ b/config.org
@@ -500,7 +500,7 @@ flyspell is an on-the-fly spell checker
500 (add-hook 'prog-mode-hook 'flyspell-prog-mode)) 500 (add-hook 'prog-mode-hook 'flyspell-prog-mode))
501#+END_SRC 501#+END_SRC
502** Python 502** Python
503[[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 navigation, docs, and completion for Python.
504 504
505#+BEGIN_SRC emacs-lisp 505#+BEGIN_SRC emacs-lisp
506(use-package anaconda-mode 506(use-package anaconda-mode
@@ -509,7 +509,7 @@ flyspell is an on-the-fly spell checker
509 :ensure t 509 :ensure t
510 :config 510 :config
511 (eval-after-load "company" 511 (eval-after-load "company"
512 '(add-to-list 'company-backends 'company-anaconda))) 512 '(add-to-list 'company-backends '(company-anaconda :with company-capf))))
513#+END_SRC 513#+END_SRC
514 514
515[[https://github.com/porterjamesj/virtualenvwrapper.el][virtualenvwrapper.el]] adds support for virtualenvs for emacs. 515[[https://github.com/porterjamesj/virtualenvwrapper.el][virtualenvwrapper.el]] adds support for virtualenvs for emacs.