diff options
Diffstat (limited to 'local-lib/python-conf.el')
| -rw-r--r-- | local-lib/python-conf.el | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/local-lib/python-conf.el b/local-lib/python-conf.el new file mode 100644 index 0000000..9c6fd1f --- /dev/null +++ b/local-lib/python-conf.el | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | ;;; python-conf.el --- configuration for the python language | ||
| 2 | ;; Author: jason <jason@zzq.org> | ||
| 3 | ;; Created: 16 Jun 2017 | ||
| 4 | ;;; Commentary: | ||
| 5 | ;; | ||
| 6 | ;;; Code: | ||
| 7 | (add-to-list 'package-archives | ||
| 8 | '("elpy" . "http://jorgenschaefer.github.io/packages/")) | ||
| 9 | |||
| 10 | (use-package elpy | ||
| 11 | :ensure t | ||
| 12 | :config | ||
| 13 | (elpy-enable)) | ||
| 14 | |||
| 15 | (provide 'python-conf) | ||