summaryrefslogtreecommitdiff
path: root/ftplugin/json.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-05 16:26:31 -0400
committerchristianchiarulli <[email protected]>2021-07-05 16:26:31 -0400
commit20485971641a9d916640ccad05586a641c984ed6 (patch)
treed397a3a9adba502b4c26b802d897b8310972f76f /ftplugin/json.lua
parent56e82dac4497293541099185441485dd31e98dc8 (diff)
parenta469c710bfc01f291df68dba40464caaa2b496da (diff)
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into stable
Diffstat (limited to 'ftplugin/json.lua')
-rw-r--r--ftplugin/json.lua39
1 files changed, 14 insertions, 25 deletions
diff --git a/ftplugin/json.lua b/ftplugin/json.lua
index 3a565095..29a3096f 100644
--- a/ftplugin/json.lua
+++ b/ftplugin/json.lua
@@ -1,28 +1,17 @@
-- 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)'
- }
- }
- })
-end