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": {
|
||||||
"NEWS.md": "6520"
|
"NEWS.md": "6520"
|
||||||
},
|
},
|
||||||
"version": 6
|
"version": 7
|
||||||
}
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"mistricky/codesnap.nvim",
|
"https://git.zynh.me/Zynh0722/codesnap.nvim",
|
||||||
|
branch = "rose-pine-theme",
|
||||||
build = "make",
|
build = "make",
|
||||||
cmd = "CodeSnap",
|
cmd = "CodeSnap",
|
||||||
opts = {
|
opts = {
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
return {
|
return {
|
||||||
"stevearc/conform.nvim",
|
"stevearc/conform.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
formatters_by_ft = {
|
formatters = {
|
||||||
sql = { "sql_formatter" },
|
sqlfluff = {
|
||||||
-- nix = { "nixpgs_fmt" },
|
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,
|
enable = false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
procMacro = {
|
-- procMacro = {
|
||||||
enable = true,
|
-- enable = true,
|
||||||
-- ignored = {
|
-- ignored = {
|
||||||
-- ["leptos_macro"] = { "component" },
|
-- ["leptos_macro"] = { "component" },
|
||||||
-- },
|
-- },
|
||||||
},
|
-- },
|
||||||
|
-- files = {
|
||||||
|
-- excludeDirs = {
|
||||||
|
-- ".direnv",
|
||||||
|
-- "target",
|
||||||
|
-- },
|
||||||
|
-- watcherExclude = {
|
||||||
|
-- ".direnv",
|
||||||
|
-- "target",
|
||||||
|
-- "node_modules"
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
checkOnSave = true,
|
checkOnSave = true,
|
||||||
check = {
|
check = {
|
||||||
command = "clippy",
|
command = "clippy",
|
||||||
|
|
Loading…
Reference in a new issue