summaryrefslogtreecommitdiff
path: root/.emacs.d.back/setup/setup-python-mode.el
blob: d7897f95484a196ee6d489580fa2cff8d56c6338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; setup-python-mode.el --- rogs default python mode configuration
;;
;;; Commentary:
;;
;; My default configuration for python mode
;;
;;; Code:

(elpy-enable)
(setq elpy-rpc-backend "jedi")

(provide 'setup-python-mode)
;;; setup-python-mode.el ends here