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

(use-package pants
  :load-path (lambda () (expand-file-name "pants.el" fcuny/path-workspace))
  :mode (("BUILD\\'" . pants-build-mode))
  :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)