Fix SQL linting and update plugins

This commit is contained in:
2025-10-22 14:06:48 +05:00
parent 20ec1cca6f
commit ae0a6c7b91
2 changed files with 44 additions and 31 deletions

13
lua/plugins/nvim-lint.lua Normal file
View File

@ -0,0 +1,13 @@
return {
"mfussenegger/nvim-lint",
opts = {
linters = {
sqlfluff = {
args = {
"lint",
"--format=json",
},
},
},
},
}