diff options
author | Rafael <[email protected]> | 2021-07-04 22:14:01 -0300 |
---|---|---|
committer | Rafael <[email protected]> | 2021-07-04 22:14:01 -0300 |
commit | 9f511bcb594b7e2461c97cb8182603928c773c2f (patch) | |
tree | c08a825ae91201fb0062dbd7a8094357f5c78dc9 /ftplugin/json.lua | |
parent | b461c878e6f70a6795d0e9b438335ccfecbb4bd9 (diff) |
start formatting rules
Diffstat (limited to 'ftplugin/json.lua')
-rw-r--r-- | ftplugin/json.lua | 45 |
1 files changed, 23 insertions, 22 deletions
diff --git a/ftplugin/json.lua b/ftplugin/json.lua index 3a565095..da0c9ff2 100644 --- a/ftplugin/json.lua +++ b/ftplugin/json.lua @@ -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 |