Last active
February 23, 2017 04:18
-
-
Save danielrmeyer/368c5b10f6b9c595227d75a042df3953 to your computer and use it in GitHub Desktop.
emacs stuff
This file contains hidden or 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
(setq-default indent-tabs-mode nil) | |
(setq scroll-step 1) | |
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(custom-safe-themes | |
(quote | |
("6afe5e62af80cdfb9b5e2e538817e4201f4116755df69c477223b7ff7c405ad0" default))) | |
'(package-archives | |
(quote | |
(("gnu" . "http://elpa.gnu.org/packages/") | |
("melpa" . "https://melpa.org/packages/") | |
("marmalade" . "http://marmalade-repo.org/packages/"))))) | |
(custom-set-faces | |
;; custom-set-faces was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
) | |
(package-initialize) | |
;;(elpy-enable) | |
(load-theme 'deeper-blue) | |
(setq ein:use-auto-complete t) | |
(setq inferior-lisp-program "/usr/bin/sbcl") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment