aboutsummaryrefslogtreecommitdiffstats
path: root/local-lib/python-conf.el
diff options
context:
space:
mode:
authorjason2017-06-21 16:54:09 -0600
committerjason2017-06-21 16:54:09 -0600
commitfc88f9781a415e163874b503ed61711d4b7be0be (patch)
tree9b39854e584dc368162545748880a10ca0cb4602 /local-lib/python-conf.el
parent6a045908c60c5fabe654803cf162029725a3726e (diff)
downloaddotemacs-fc88f9781a415e163874b503ed61711d4b7be0be.tar.gz
dotemacs-fc88f9781a415e163874b503ed61711d4b7be0be.zip
Update the config to a 'literate programming' style
Diffstat (limited to 'local-lib/python-conf.el')
-rw-r--r--local-lib/python-conf.el16
1 files changed, 0 insertions, 16 deletions
diff --git a/local-lib/python-conf.el b/local-lib/python-conf.el
deleted file mode 100644
index 6f2a9fa..0000000
--- a/local-lib/python-conf.el
+++ /dev/null
@@ -1,16 +0,0 @@
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
8(add-to-list 'package-archives
9 '("elpy" . "http://jorgenschaefer.github.io/packages/"))
10
11(use-package elpy
12 :ensure t
13 :config
14 (elpy-enable))
15
16(provide 'python-conf)