This commit is contained in:
2024-09-29 16:52:01 -07:00
parent 361eda0412
commit 386d8e279b

View File

@@ -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