diff options
Diffstat (limited to '.emacs')
-rw-r--r-- | .emacs | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -28,3 +28,18 @@ (require 'evil-surround) (global-evil-surround-mode 1) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(package-selected-packages (quote (jedi evil-surround buffer-move auto-complete)))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) + +(add-hook 'python-mode-hook 'jedi:setup) +(setq jedi:complete-on-dot t) ; optional |