Created
May 18, 2015 16:00
-
-
Save mrmemes-eth/e10c159086ebaeae8bf4 to your computer and use it in GitHub Desktop.
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
(defvar me-packages | |
'(cider clojure-mode) | |
"List of all packages to install and/or initialize. Built-in packages | |
which require an initialization must be listed explicitly in the list.") | |
(defvar me-excluded-packages '() | |
"List of packages to exclude.") | |
(defun me/init-package-me () | |
"Staging ground for my configurations for other layers" | |
(use-package cider | |
:defer t | |
:config | |
(progn | |
(defun me/cider-ns-refresh () | |
(interactive) | |
(cider-interactive-eval | |
"(require 'clojure.tools.namespace.repl) | |
(clojure.tools.namespace.repl/refresh)")) | |
(evil-leader/set-key-for-mode 'clojure-mode | |
"msy" 'me/cider-ns-refresh)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment