From 848d3e768b64eb7a3fb49f20e7e1ac7d2fbd034d Mon Sep 17 00:00:00 2001 From: opFez Date: Sun, 20 Dec 2020 22:07:30 +0100 Subject: [PATCH] set up compile command --- functions.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/functions.el b/functions.el index 79a1015..e810858 100644 --- a/functions.el +++ b/functions.el @@ -11,3 +11,7 @@ (interactive) (mapc 'kill-buffer (buffer-list))) (global-set-key (kbd "C-c k k") 'kill-all-buffers) + +;; compilation +(setq compile-command "make ") +(global-set-key "\C-x\C-m" 'compile)