feat(emacs): flycheck
All checks were successful
build / build (push) Successful in 2m35s

This commit is contained in:
2026-03-29 13:35:24 -06:00
parent f25b53bbfd
commit cb4164f1de
2 changed files with 15 additions and 0 deletions

View File

@@ -31,6 +31,7 @@
syd/which-key
syd/tramp
syd/handle
syd/flycheck
syd/org
syd/org/roam
syd/org/agenda

View File

@@ -0,0 +1,14 @@
;;; -*- lexical-binding: t -*-
(require 'syd/base)
(require 'syd/popups)
;; Nicer error messages, integrates with `lsp-mode'
(use-package flycheck
:custom ((flycheck-highlighting-mode nil))
:general
(:states '(motion normal)
"[ e" #'flycheck-previous-error
"] e" #'flycheck-next-error))
(provide 'syd/lsp)