summary refs log tree commit diff
path: root/emacs.d/modules/module-pants.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs.d/modules/module-pants.el28
1 files changed, 0 insertions, 28 deletions
diff --git a/emacs.d/modules/module-pants.el b/emacs.d/modules/module-pants.el
deleted file mode 100644
index 579c298..0000000
--- a/emacs.d/modules/module-pants.el
+++ /dev/null
@@ -1,28 +0,0 @@
-(require 'config-package)
-
-(use-package pants
-  :load-path (lambda () (expand-file-name  "github.com/fcuny/pants.el/" fcuny-path-workspace))
-
-  :config
-  (setq pants-completion-system 'ivy
-        pants-source-tree-root (expand-file-name "git.twitter.biz/source" fcuny-path-workspace)
-        pants-bury-compilation-buffer t
-        pants-extra-args "-q")
-
-  :bind (("C-c b" . pants-find-build-file)
-         ("C-c r" . pants-run-binary)
-         ("C-c t" . pants-run-test)
-         ("C-c h" . hydra-pants/body)))
-
-(defhydra hydra-pants (:hint nil :exit t)
-"
-^Command^
-_g_: go to build
-_b_: build a binary
-_t_: run the tests
-"
-  ("g" pants-find-build-file)
-  ("b" pants-run-binary)
-  ("t" pants-run-test))
-
-(provide 'module-pants)