add groovy lang server and shfmt

This commit is contained in:
Michael Beasley 2024-10-29 19:14:59 -05:00
parent a6d2749e19
commit f02794d35a
1 changed files with 3 additions and 0 deletions

View File

@ -617,6 +617,7 @@ require('lazy').setup({
}, },
-- pyright { -- pyright {
bashls = {}, bashls = {},
groovyls = {},
terraformls = {}, terraformls = {},
yamlls = { yamlls = {
settings = { settings = {
@ -695,6 +696,7 @@ require('lazy').setup({
'bash-language-server', 'bash-language-server',
'autopep8', 'autopep8',
'json-lsp', 'json-lsp',
'groovy-language-server',
}) })
require('mason-tool-installer').setup { ensure_installed = ensure_installed } require('mason-tool-installer').setup { ensure_installed = ensure_installed }
@ -748,6 +750,7 @@ require('lazy').setup({
formatters_by_ft = { formatters_by_ft = {
lua = { 'stylua' }, lua = { 'stylua' },
python = { 'autopep8' }, python = { 'autopep8' },
sh = { 'shfmt' },
-- Conform can also run multiple formatters sequentially -- Conform can also run multiple formatters sequentially
-- python = { "isort", "black" }, -- python = { "isort", "black" },
-- --