summary refs log tree commit diff
path: root/emacs.d/core/core-pants.el
blob: cc9a93e7b9efff0870c6b1205201fcdc51d1becb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
(load-file "~/src/pants.el/pants.el")

(use-package pants
  :bind (("C-c b" . pants-find-build-file)
         ("C-c r" . pants-run-binary)
         ("C-c t" . pants-run-test))
  :config
  (progn
    (setq pants-source-tree-root "/Users/fcuny/src/source"
          pants-bury-compilation-buffer t)))

(provide 'core-pants)