spacemacs/init-package/init-jedi.el
syl20bnr 1ffb42448e Migrate all package configs to use-package.
Total load time for 90+ packages without byte-compiling: 3s... amazing !
Thanks to \@jwiegley :-)
2013-11-20 00:30:48 -05:00

9 lines
164 B
EmacsLisp

(use-package jedi
:defer t
:init
(setq jedi:setup-keys t)
:config
(progn
(setq jedi:complete-on-dot t)
(add-hook 'python-mode-hook 'jedi:setup)))