-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
.dir-locals.el
35 lines (28 loc) · 1.49 KB
/
.dir-locals.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
;; for configuration - projectile-project-configure-cmd
;; for compilation - projectile-project-compilation-cmd
;; for testing - projectile-project-test-cmd
;; for installation - projectile-project-install-cmd
;; for packaging - projectile-project-package-cmd
;; for running - projectile-project-run-cmd
;; for configuring the test prefix - projectile-project-test-prefix
;; for configuring the test suffix - projectile-project-test-suffix
;; for configuring the related-files-fn property - projectile-project-related-files-fn
;; for configuring the src-dir property - projectile-project-src-dir
;; for configuring the test-dir property - projectile-project-test-dir
;; projectile-configure-use-separate-buffer
;; projectile-compile-use-separate-buffer
;; projectile-test-use-separate-buffer
;; projectile-package-use-separate-buffer
;; projectile-run-use-separate-buffer
;; projectile-install-use-separate-buffer
((nil . ((projectile-project-install-cmd . "./make.sh copy")
(projectile-install-buffer-suffix . "install")
(projectile-project-compilation-cmd . "luacheck .")
(projectile-compile-buffer-suffix . "lint")
(projectile-project-package-cmd . "./make.sh zip")
(projectile-package-buffer-suffix . "install")
(projectile-project-uninstall-cmd . "./make.sh clear")
(projectile-uninstall-buffer-suffix . "install")
(projectile-project-test-cmd . "./make.sh visualize")
(projectile-test-buffer-suffix . "visual")
(projectile-project-run-cmd . "factorio"))))