Compare commits
No commits in common. "c83e5b8b4addfcd2b937bd32422740184b7640de" and "fc221e40961a3d6909e779ac277bc6ebcdfaae39" have entirely different histories.
c83e5b8b4a
...
fc221e4096
5 changed files with 12 additions and 40 deletions
|
@ -23,4 +23,5 @@
|
||||||
"news": {
|
"news": {
|
||||||
"NEWS.md": "6520"
|
"NEWS.md": "6520"
|
||||||
},
|
},
|
||||||
"version": 7
|
"version": 6
|
||||||
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"https://git.zynh.me/Zynh0722/codesnap.nvim",
|
"mistricky/codesnap.nvim",
|
||||||
branch = "rose-pine-theme",
|
|
||||||
build = "make",
|
build = "make",
|
||||||
cmd = "CodeSnap",
|
cmd = "CodeSnap",
|
||||||
opts = {
|
opts = {
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
return {
|
return {
|
||||||
"stevearc/conform.nvim",
|
"stevearc/conform.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
formatters = {
|
formatters_by_ft = {
|
||||||
sqlfluff = {
|
sql = { "sql_formatter" },
|
||||||
args = { "format", "--dialect=sqlite", "-" },
|
-- nix = { "nixpgs_fmt" },
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
setup = {},
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
return {
|
|
||||||
"mfussenegger/nvim-lint",
|
|
||||||
opts = {
|
|
||||||
linters = {
|
|
||||||
sqlfluff = {
|
|
||||||
args = {
|
|
||||||
"lint",
|
|
||||||
"--format=json",
|
|
||||||
-- note: users will have to replace the --dialect argument accordingly
|
|
||||||
"--dialect=sqlite",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -19,23 +19,12 @@ 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