-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython-custom.el
36 lines (26 loc) · 901 Bytes
/
python-custom.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
;;; package --- Summary
;; I like python.
;;; Commentary:
;; I like pancakes.
;;; Code:
(require 'elpy)
(require 'anaconda-mode)
(require 'semantic)
;; WOW THIS IS SHIT HOW DO I LIVE WITH THIS
(with-eval-after-load "anaconda-mode"
(define-key anaconda-mode-map (kbd "M-r") nil))
(with-eval-after-load "python-mode"
(define-key python-mode-map (kbd "C-c d") 'helm-pydoc)
)
(semantic-add-system-include "/usr/lib/python3.6" 'python-mode)
(semantic-add-system-include "/usr/lib/python2.7" 'python-mode)
(add-hook 'python-mode-hook 'anaconda-mode)
(elpy-enable)
(setq elpy-rpc-backend "jedi")
(setq python-shell-interpreter "ipython"
python-shell-interpreter-args "-i --simple-prompt")
(define-key elpy-mode-map (kbd "C-x C-a C-b C-c") nil)
;; (setq python-shell-interpreter "ipython"
;; python-shell-interpreter-args "-i")
(provide 'python-custom)
;;; python-custom ends here