diff options
author | Julian T <julian@jtle.dk> | 2018-12-20 17:52:30 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2018-12-20 17:52:30 +0100 |
commit | 613377643780dac31ceca30908e16157bb4dd5ce (patch) | |
tree | 3e4aa3ff7baa94b29368647079225db28a9ddf11 /.emacs | |
parent | b9337a198bc97ab03f5465b0eed3dd4ce1f93256 (diff) | |
parent | 8f0cb15b558a403f79864f3d624c5e5d883b7c07 (diff) |
Merge https://github.com/jbjjbjjbj/newDotFiles
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 |