Skip to content

Instantly share code, notes, and snippets.

@ah45
ah45 / profiles.clj
Last active July 18, 2019 15:40 — forked from the-frey/profiles.clj
lein REPL alias
;; in ~/.lein/profiles.clj
{;; a distinct cider-nrepl profile
:cider-nrepl {:plugins [[cider/cider-nrepl "0.22.0-beta1"]
[refactor-nrepl "2.4.0"]]}
;; with an alias to always use it when running `lein repl`
:user {:aliases {"repl" ["with-profile" "+cider-nrepl" "repl"]}}
@ah45
ah45 / .profile
Last active August 29, 2015 14:01 — forked from blowmage/.profile
ohmygems
# configure the Ruby Gems environment
export RUBYOPT=rubygems
export GEM_HOME="$HOME/.gem"
export GEM_PATH="$HOME/.gem"
export PATH="$HOME/.gem/bin:$PATH"
source ~/bin/ohmygems