summaryrefslogtreecommitdiffstats
path: root/emacs.d
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/init.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 5bba424..d2d89ec 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -197,6 +197,10 @@
(setq split-width-threshold 0)
(setq compilation-finish-functions 'compile-autoclose)
+;; Remove slow Maven regexp that makes the compilation buffer clunky
+(setq compilation-error-regexp-alist
+ (delete 'maven compilation-error-regexp-alist))
+
;;; Key bindings
(global-set-key (kbd "\C-m") 'newline-and-indent)