Created
April 12, 2014 06:37
-
-
Save bitristan/10521793 to your computer and use it in GitHub Desktop.
emacs elpy configuration fragment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Elpa initialization. | |
(require 'package) | |
(setq package-archives | |
'(("gnu" . "http://elpa.gnu.org/packages/") | |
("marmalade" . "http://marmalade-repo.org/packages/") | |
("melpa" . "http://melpa.milkbox.net/packages/"))) | |
(package-initialize) | |
;; Configuration of elpy for Python development. | |
;; https://github.com/jorgenschaefer/elpy. | |
(when (require 'elpy nil t) | |
(elpy-enable) | |
(setq elpy-rpc-backend "jedi") | |
(elpy-use-ipython)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment