Flycheck
This commit is contained in:
@@ -437,6 +437,7 @@
|
|||||||
"\\*Async Shell Command\\*"
|
"\\*Async Shell Command\\*"
|
||||||
"\\*Backtrace\\*"
|
"\\*Backtrace\\*"
|
||||||
"\\*Compile-Log\\*"
|
"\\*Compile-Log\\*"
|
||||||
|
"\\*Flycheck errors\\*"
|
||||||
help-mode
|
help-mode
|
||||||
compilation-mode))
|
compilation-mode))
|
||||||
(setq popper-group-function #'popper-group-by-project)
|
(setq popper-group-function #'popper-group-by-project)
|
||||||
@@ -756,7 +757,20 @@
|
|||||||
|
|
||||||
(use-package lsp-ui
|
(use-package lsp-ui
|
||||||
:ensure t
|
:ensure t
|
||||||
:commands lsp-ui-mode)
|
:commands lsp-ui-mode
|
||||||
|
:custom
|
||||||
|
(lsp-ui-sideline-show-diagnostics nil))
|
||||||
|
;;;; Flycheck
|
||||||
|
(use-package flycheck
|
||||||
|
:ensure t
|
||||||
|
:init
|
||||||
|
(setq flycheck-keymap-prefix (kbd "C-c e"))
|
||||||
|
:bind (:repeat-map flycheck-repeat-map
|
||||||
|
("n" . flycheck-next-error)
|
||||||
|
("p" . flycheck-previous-error))
|
||||||
|
:config
|
||||||
|
(add-hook 'after-init-hook #'global-flycheck-mode))
|
||||||
|
|
||||||
|
|
||||||
;;;; Nix
|
;;;; Nix
|
||||||
(use-package nix-mode
|
(use-package nix-mode
|
||||||
|
|||||||
Reference in New Issue
Block a user