You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
587 B
EmacsLisp
16 lines
587 B
EmacsLisp
(require 'flycheck)
|
|
|
|
(load "init-flycheck-cargo-has-command-p-fix")
|
|
|
|
(add-hook 'flycheck-error-list-mode-hook (lambda () (visual-line-mode 1)))
|
|
|
|
(add-to-list 'display-buffer-alist '("\\*Flycheck errors.*"
|
|
(init-display-buffer-best-side)
|
|
(which-side . (lambda ()
|
|
(if (init-display-buffer-frame-wide-p)
|
|
'right
|
|
'bottom)))))
|
|
|
|
|
|
(provide 'init-flycheck)
|