add company-jedi to my-package and add init file

This commit is contained in:
Adam Goldsmith 2015-05-11 23:22:02 -04:00
parent 83ec91a4ed
commit 8475f90893
2 changed files with 6 additions and 1 deletions

3
.emacs
View File

@ -65,7 +65,8 @@
todotxt-mode
php-mode
scad-mode
smarttabs))
smarttabs
company-jedi))
;;auctex))
(el-get-cleanup my-packages)
(el-get 'sync my-packages)

View File

@ -0,0 +1,4 @@
(defun my/python-mode-hook ()
(add-to-list 'company-backends 'company-jedi))
(add-hook 'python-mode-hook 'my/python-mode-hook)