09/24/2025

This commit is contained in:
Grayson Butcher 2025-09-24 11:25:38 -06:00
parent e945588f4e
commit 8579d42c7e
6 changed files with 142 additions and 162 deletions

View file

@ -50,7 +50,7 @@ return {
-- Only run the linter in buffers that you can modify in order to
-- avoid superfluous noise, notably within the handy LSP pop-ups that
-- describe the hovered symbol using Markdown.
if vim.opt_local.modifiable:get() then
if vim.bo.modifiable then
lint.try_lint()
end
end,