summary refs log tree commit diff
path: root/emacs.d/config/fcuny-pants.el
blob: 3ed1ef1d1741bb6cfb5d536aaa075331df00cadc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(eval-when-compile
  (require 'use-package))

(use-package pants
  :load-path (lambda () (expand-file-name  "github.com/fcuny/pants.el/" fcuny-path-workspace))
  :custom
  (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)))

(provide 'fcuny-pants)