Compare commits
5 commits
fc221e4096
...
c83e5b8b4a
Author | SHA1 | Date | |
---|---|---|---|
c83e5b8b4a | |||
e9081c5ea1 | |||
aaecea475c | |||
d71bdcddd7 | |||
63433f84d8 |
5 changed files with 40 additions and 12 deletions
|
@ -23,5 +23,4 @@
|
|||
"news": {
|
||||
"NEWS.md": "6520"
|
||||
},
|
||||
"version": 6
|
||||
}
|
||||
"version": 7
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
return {
|
||||
{
|
||||
"mistricky/codesnap.nvim",
|
||||
"https://git.zynh.me/Zynh0722/codesnap.nvim",
|
||||
branch = "rose-pine-theme",
|
||||
build = "make",
|
||||
cmd = "CodeSnap",
|
||||
opts = {
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
return {
|
||||
"stevearc/conform.nvim",
|
||||
opts = {
|
||||
formatters_by_ft = {
|
||||
sql = { "sql_formatter" },
|
||||
-- nix = { "nixpgs_fmt" },
|
||||
formatters = {
|
||||
sqlfluff = {
|
||||
args = { "format", "--dialect=sqlite", "-" },
|
||||
},
|
||||
},
|
||||
},
|
||||
setup = {},
|
||||
}
|
||||
|
|
15
lua/plugins/nvim-lint.lua
Normal file
15
lua/plugins/nvim-lint.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
return {
|
||||
"mfussenegger/nvim-lint",
|
||||
opts = {
|
||||
linters = {
|
||||
sqlfluff = {
|
||||
args = {
|
||||
"lint",
|
||||
"--format=json",
|
||||
-- note: users will have to replace the --dialect argument accordingly
|
||||
"--dialect=sqlite",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
|
@ -19,12 +19,23 @@ return {
|
|||
enable = false,
|
||||
},
|
||||
},
|
||||
procMacro = {
|
||||
enable = true,
|
||||
-- ignored = {
|
||||
-- ["leptos_macro"] = { "component" },
|
||||
-- },
|
||||
},
|
||||
-- procMacro = {
|
||||
-- enable = true,
|
||||
-- ignored = {
|
||||
-- ["leptos_macro"] = { "component" },
|
||||
-- },
|
||||
-- },
|
||||
-- files = {
|
||||
-- excludeDirs = {
|
||||
-- ".direnv",
|
||||
-- "target",
|
||||
-- },
|
||||
-- watcherExclude = {
|
||||
-- ".direnv",
|
||||
-- "target",
|
||||
-- "node_modules"
|
||||
-- },
|
||||
-- },
|
||||
checkOnSave = true,
|
||||
check = {
|
||||
command = "clippy",
|
||||
|
|
Loading…
Reference in a new issue