From 1eb3bffd70a8e27be8fa99ea0b3a35d2b60de399 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 10 May 2014 14:33:40 -0700 Subject: [PATCH] Add make ensime. bump emacs for rewrite of all emacs commits. --- dotfiles/emacs.d | 2 +- dotfiles/lib/shellrc/functions.sh | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d b/dotfiles/emacs.d index 4e5b60b2..e7f72fc4 160000 --- a/dotfiles/emacs.d +++ b/dotfiles/emacs.d @@ -1 +1 @@ -Subproject commit 4e5b60b261a7ce26b6968ac6e606051d2130efef +Subproject commit e7f72fc469c8ca33ed081d76646a7a0ce92e12cc diff --git a/dotfiles/lib/shellrc/functions.sh b/dotfiles/lib/shellrc/functions.sh index cf61d4b0..55f08adc 100644 --- a/dotfiles/lib/shellrc/functions.sh +++ b/dotfiles/lib/shellrc/functions.sh @@ -186,3 +186,8 @@ function fix_brew_htop() { function pip_package_location() { pip show $1 | grep Location | get_cols 2 } + +function make_ensime() { + echo '\n\naddSbtPlugin("org.ensime" % "ensime-sbt-cmd" % "0.1.1")' >> project/plugins.sbt + sbt "ensime generate" +}