Flycheck
This commit is contained in:
@@ -437,6 +437,7 @@
|
||||
"\\*Async Shell Command\\*"
|
||||
"\\*Backtrace\\*"
|
||||
"\\*Compile-Log\\*"
|
||||
"\\*Flycheck errors\\*"
|
||||
help-mode
|
||||
compilation-mode))
|
||||
(setq popper-group-function #'popper-group-by-project)
|
||||
@@ -756,7 +757,20 @@
|
||||
|
||||
(use-package lsp-ui
|
||||
: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
|
||||
(use-package nix-mode
|
||||
|
||||
Reference in New Issue
Block a user