Disable debug-on-error

This commit is contained in:
Ivan Malison 2015-08-10 13:08:51 -07:00
parent 1d32ee047d
commit 849d1ef89b

View File

@ -445,7 +445,8 @@ The current directory is assumed to be the project's root otherwise."
(setq-default cursor-type 'box) (setq-default cursor-type 'box)
(setq-default cursor-in-non-selected-windows 'bar) (setq-default cursor-in-non-selected-windows 'bar)
(add-hook 'after-init-hook '(lambda () (setq debug-on-error t))) (if nil ;; Causing too many annoying issues
(add-hook 'after-init-hook '(lambda () (setq debug-on-error t))))
;; Make mouse scrolling less jumpy. ;; Make mouse scrolling less jumpy.
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1))) (setq mouse-wheel-scroll-amount '(1 ((shift) . 1)))