Created
February 23, 2018 20:09
-
-
Save christopher-beckham/2c889f96094cb6b3e9ebb9a46bac304f to your computer and use it in GitHub Desktop.
My emacs config
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
;; init.el --- Emacs configuration | |
;; INSTALL PACKAGES | |
;; -------------------------------------- | |
(require 'package) | |
(add-to-list 'package-archives | |
'("melpa" . "http://melpa.org/packages/") t) | |
(package-initialize) | |
(when (not package-archive-contents) | |
(package-refresh-contents)) | |
(defvar myPackages | |
'(better-defaults | |
ein | |
elpy | |
flycheck | |
material-theme | |
py-autopep8)) | |
(mapc #'(lambda (package) | |
(unless (package-installed-p package) | |
(package-install package))) | |
myPackages) | |
;; BASIC CUSTOMIZATION | |
;; -------------------------------------- | |
(setq inhibit-startup-message t) ;; hide the startup message | |
;;(load-theme 'material t) ;; load material theme | |
(global-linum-mode t) ;; enable line numbers globally | |
;; PYTHON CONFIGURATION | |
;; -------------------------------------- | |
(elpy-enable) | |
(elpy-use-ipython) | |
;; use flycheck not flymake with elpy | |
(when (require 'flycheck nil t) | |
(setq elpy-modules (delq 'elpy-module-flymake elpy-modules)) | |
(add-hook 'elpy-mode-hook 'flycheck-mode)) | |
;; enable autopep8 formatting on save | |
;;(require 'py-autopep8) | |
;;(add-hook 'elpy-mode-hook 'py-autopep8-enable-on-save) | |
;; init.el ends here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment