summaryrefslogtreecommitdiffstats
path: root/lisp/init-compile.el
blob: 199ab8b67377f7fd8c58b0621a13fd04fbf1abbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
(use-package compile
  :ensure nil ;; package is bundled with emacs

  :init
  ;; avoid reading command when compiling
  (setq compilation-read-command nil)

  :bind (("C-c m" . 'compile)))

(provide 'init-compile)