aboutsummaryrefslogtreecommitdiffstats
path: root/local-lib
diff options
context:
space:
mode:
authorjason2017-06-19 15:38:52 -0600
committerjason2017-06-19 15:38:52 -0600
commit760ffc3023f86a8b4cd48fdd839b75214bc00f21 (patch)
tree9068f59894f28c84b87300b7e41aab873342698e /local-lib
parentf2bebb5e14fb49f8347e9e2c3978d01e61bbc53f (diff)
downloaddotemacs-760ffc3023f86a8b4cd48fdd839b75214bc00f21.tar.gz
dotemacs-760ffc3023f86a8b4cd48fdd839b75214bc00f21.zip
Add python and magit support
Diffstat (limited to 'local-lib')
-rw-r--r--local-lib/python-conf.el15
-rw-r--r--local-lib/version-control-conf.el16
2 files changed, 31 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)
diff --git a/local-lib/version-control-conf.el b/local-lib/version-control-conf.el
new file mode 100644
index 0000000..a5e41df
--- /dev/null
+++ b/local-lib/version-control-conf.el
@@ -0,0 +1,16 @@
1;;; version-control-conf.el --- configuration for version control
2;; Author: jason <jason@zzq.org>
3;; Created: 16 Jun 2017
4;;; Commentary:
5;;
6;; Configures version control (magit)
7;;
8;;; Code:
9(use-package magit
10 :ensure t
11 :commands (magit-status magit-blame magit-log-buffer-file)
12 :bind (("C-c v s" . magit-status)
13 ("C-c v B" . magit-blame)
14 ("C-c v L" . magit-log-buffer-file)))
15
16(provide 'version-control-conf)