diff options
author | Aaron LI <aly@aaronly.me> | 2018-07-18 19:17:35 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-07-18 19:17:35 +0800 |
commit | 4c9f9abe23b1610d78a4af9ec59714ceab3e0d74 (patch) | |
tree | 3edf67912f2cfffcffc871de90cec720a1fc1134 /_spacemacs.d | |
parent | f66a64ccbc5a690e1c8e12073b5cd202902c882b (diff) | |
download | dotfiles-4c9f9abe23b1610d78a4af9ec59714ceab3e0d74.tar.bz2 |
spacemacs: Set default python interpreter to python3
Diffstat (limited to '_spacemacs.d')
-rw-r--r-- | _spacemacs.d/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el index 1c4ea01..5f55dcf 100644 --- a/_spacemacs.d/init.el +++ b/_spacemacs.d/init.el @@ -490,6 +490,9 @@ (setq indent-tabs-mode t) (c-set-style "bsd"))) + ;; Python + (setq python-shell-interpreter "python3") + ;; Enable `company-mode' globally (global-company-mode) (setq company-idle-delay 0.1) |