summary refs log tree commit diff
path: root/emacs/custom/fcuny-twitter.el
blob: ea3e4245c8e5e567cbf1608e4bde7f33b93243fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
(require 'fcuny-vars)

(use-package pants
  :load-path (lambda () (expand-file-name "pants.el" fcuny/path-workspace))
  :mode (("BUILD\\'" . pants-build-mode))
  :commands (pants-build-fmt pants-run-fmt pants-run-test pants-run-binary pants-run-python-repl)
  :custom
  (pants-completion-system 'ivy)
  (pants-bury-compilation-buffer +1)
  (pants-build-format-exec (expand-file-name "source/pants-support/buildifier/bin/buildifier" fcuny/path-workspace))
  (pants-source-tree-root (expand-file-name "source" fcuny/path-workspace)))

(provide 'fcuny-twitter)