Skip to content

Instantly share code, notes, and snippets.

@bitristan
Created April 12, 2014 06:37
Show Gist options
  • Save bitristan/10521793 to your computer and use it in GitHub Desktop.
Save bitristan/10521793 to your computer and use it in GitHub Desktop.
emacs elpy configuration fragment
;; 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