aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2023-09-22 14:50:08 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2023-09-22 14:50:42 +0100
commit66fa84dd1000982f7de4a7a511ee2b631cc437d1 (patch)
treec3528882229b6b6ac212fd8857f33a1efa320a53 /Emacs/.config/emacs
parentfce24d44ab63fafe70ca7363bf01d5ef858c96b4 (diff)
downloaddotfiles-66fa84dd1000982f7de4a7a511ee2b631cc437d1.tar.gz
dotfiles-66fa84dd1000982f7de4a7a511ee2b631cc437d1.tar.bz2
dotfiles-66fa84dd1000982f7de4a7a511ee2b631cc437d1.zip
(Emacs)~custom.el has safe values for projectile-*-cmd
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r--Emacs/.config/emacs/.config/custom.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/Emacs/.config/emacs/.config/custom.el b/Emacs/.config/emacs/.config/custom.el
index ef8170e..53ee2b7 100644
--- a/Emacs/.config/emacs/.config/custom.el
+++ b/Emacs/.config/emacs/.config/custom.el
@@ -4,7 +4,10 @@
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(safe-local-variable-values
- (flycheck-mode . t)))
+ '((projectile-project-configure-cmd . "make clean")
+ (projectile-project-test-cmd . "make test")
+ (projectile-project-run-cmd . "make run")
+ (projectile-project-compilation-cmd . "make"))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.