diff options
| -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 7604227..301a164 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -224,6 +224,14 @@ (eshell-scroll-show-maximum-output nil))) +;; Flymake + +(use-package flymake + :bind (:map flymake-mode-map + ("s-[" . flymake-goto-prev-error) + ("s-]" . flymake-goto-next-error))) + + ;; Go (use-package go-mode |
