mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 08:53:31 +02:00
19 lines
318 B
Lua
19 lines
318 B
Lua
return {
|
|
settings = {
|
|
json = {
|
|
schemas = require("schemastore").json.schemas(),
|
|
},
|
|
},
|
|
setup = {
|
|
commands = {
|
|
Format = {
|
|
function()
|
|
vim.lsp.buf.range_formatting({}, { 0, 0 }, { vim.fn.line("$"), 0 })
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
init_options = {
|
|
provideFormatter = false,
|
|
},
|
|
}
|