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.
13 lines
493 B
EmacsLisp
13 lines
493 B
EmacsLisp
2 years ago
|
(require 'flymake)
|
||
|
|
||
2 years ago
|
(load "init-flymake-hooks")
|
||
2 years ago
|
|
||
2 years ago
|
(add-to-list 'display-buffer-alist '("\\*Flymake diagnostics.*"
|
||
2 years ago
|
(init-display-buffer-best-side)
|
||
2 years ago
|
(which-side . (lambda ()
|
||
2 years ago
|
(if (init-display-buffer-frame-wide-p)
|
||
2 years ago
|
'right
|
||
|
'bottom)))))
|
||
2 years ago
|
|
||
2 years ago
|
(provide 'init-flymake)
|