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
595 B
EmacsLisp

2 years ago
(require 'flycheck)
(load "config-flycheck-cargo-has-command-p-fix")
2 years ago
(add-hook 'flycheck-error-list-mode-hook (lambda () (visual-line-mode 1)))
(add-to-list 'display-buffer-alist '("\\*Flycheck errors.*"
(config-display-buffer-best-side)
(which-side . (lambda ()
(if (config-display-buffer-frame-wide-p)
'right
'bottom)))))
2 years ago
(provide 'config-flycheck)