Merge remote-tracking branch 'upstream/master' into feat/merge-kickstart

This commit is contained in:
Lucas Garcia Rubio 2025-05-19 19:54:36 -03:00
commit bb6f652cd8
7 changed files with 233 additions and 209 deletions

View file

@ -55,7 +55,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,