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
;; 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"]}} |
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
# 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 |