config(nvim): improve toml format
parent
5b1d47e327
commit
cf087adb9b
|
@ -405,7 +405,9 @@ require("lazy").setup({
|
||||||
"javascript",
|
"javascript",
|
||||||
"json",
|
"json",
|
||||||
"lua",
|
"lua",
|
||||||
|
"make",
|
||||||
"markdown",
|
"markdown",
|
||||||
|
"proto",
|
||||||
"python",
|
"python",
|
||||||
"sh",
|
"sh",
|
||||||
"toml",
|
"toml",
|
||||||
|
@ -423,6 +425,7 @@ require("lazy").setup({
|
||||||
json = { "deno_fmt" },
|
json = { "deno_fmt" },
|
||||||
lua = { "stylua" },
|
lua = { "stylua" },
|
||||||
markdown = { "deno_fmt" },
|
markdown = { "deno_fmt" },
|
||||||
|
proto = { "buf" },
|
||||||
python = { "ruff_format" },
|
python = { "ruff_format" },
|
||||||
sh = { "shfmt" },
|
sh = { "shfmt" },
|
||||||
toml = { "taplo" },
|
toml = { "taplo" },
|
||||||
|
@ -436,6 +439,9 @@ require("lazy").setup({
|
||||||
shfmt = {
|
shfmt = {
|
||||||
prepend_args = { "-s", "-i", "4" },
|
prepend_args = { "-s", "-i", "4" },
|
||||||
},
|
},
|
||||||
|
taplo = {
|
||||||
|
args = { "fmt", "-o", "indent_string= ", "-o", "allowed_blank_lines=1", "-" },
|
||||||
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue