diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2025-06-22 09:47:13 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2025-06-22 09:47:13 +0100 |
| commit | 502478ab5902e561530d47e1d09884291a5e8963 (patch) | |
| tree | 751feb1abe19c8060c0f566e4efcdaa6bc66dba7 | |
| parent | f5daf009ec88c310bfac50cde2ce554dda72914e (diff) | |
emacs: Add Compilation mode configuration
| -rw-r--r-- | emacs/init.el | 8 |
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 |
