summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2025-06-22 09:47:13 +0100
committerGrégoire Duchêne <gduchene@awhk.org>2025-06-22 09:47:13 +0100
commit502478ab5902e561530d47e1d09884291a5e8963 (patch)
tree751feb1abe19c8060c0f566e4efcdaa6bc66dba7
parentf5daf009ec88c310bfac50cde2ce554dda72914e (diff)
emacs: Add Compilation mode configuration
-rw-r--r--emacs/init.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el
index bc0abf8..516880f 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -184,6 +184,14 @@
(use-package google-c-style :defer t :ensure t)
+;; Compile
+
+(use-package compile
+ :bind (:map compilation-mode-map
+ ("s-[" . compilation-previous-error)
+ ("s-]" . compilation-next-error)))
+
+
;; Dired
(use-package dired