start formatting rules

This commit is contained in:
Rafael 2021-07-04 22:14:01 -03:00
parent b461c878e6
commit 9f511bcb59
No known key found for this signature in database
GPG key ID: F5302DA7C6F2F5FD
65 changed files with 2829 additions and 2812 deletions

View file

@ -1,28 +1,29 @@
-- npm install -g vscode-json-languageserver
require'lspconfig'.jsonls.setup {
cmd = {
"node", DATA_PATH ..
"/lspinstall/json/vscode-json/json-language-features/server/dist/node/jsonServerMain.js",
"--stdio"
},
on_attach = require'lsp'.common_on_attach,
require("lspconfig").jsonls.setup {
cmd = {
"node",
DATA_PATH .. "/lspinstall/json/vscode-json/json-language-features/server/dist/node/jsonServerMain.js",
"--stdio",
},
on_attach = require("lsp").common_on_attach,
commands = {
Format = {
function()
vim.lsp.buf.range_formatting({}, {0, 0}, {vim.fn.line("$"), 0})
end
}
}
commands = {
Format = {
function()
vim.lsp.buf.range_formatting({}, { 0, 0 }, { vim.fn.line "$", 0 })
end,
},
},
}
if O.lang.json.autoformat then
require('lv-utils').define_augroups({
_json_format = {
{
'BufWritePre', '*.json',
'lua vim.lsp.buf.formatting_sync(nil, 1000)'
}
}
})
require("lv-utils").define_augroups {
_json_format = {
{
"BufWritePre",
"*.json",
"lua vim.lsp.buf.formatting_sync(nil, 1000)",
},
},
}
end