Skip to content

Instantly share code, notes, and snippets.

@takeouchida
Created August 23, 2016 07:26
Show Gist options
  • Save takeouchida/db1ce3b1b6fbfa87f75c2d5c2c90547c to your computer and use it in GitHub Desktop.
Save takeouchida/db1ce3b1b6fbfa87f75c2d5c2c90547c to your computer and use it in GitHub Desktop.
Emacs 24.3 settings with el-get and clojure-mode
(add-to-list 'load-path "~/.emacs.d/el-get/el-get")
(unless (require 'el-get nil 'noerror)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/dimitri/el-get/master/el-get-install.el")
(goto-char (point-max))
(eval-print-last-sexp)))
(add-to-list 'el-get-recipe-path "~/.emacs.d/el-get-user/recipes")
(el-get 'sync)
;(el-get-bundle "helm" :branch "v1.9.8"
; (define-key global-map (kbd "M-x") 'helm-M-x))
(el-get-bundle "clojure-mode")
(el-get-bundle "cider")
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
(setq molokai-theme-kit t)
(load-theme 'molokai t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment