1
0

Update home/.config/lvim/lua/user/plugins.lua

This commit is contained in:
Jeff Lance 2024-02-22 15:37:54 +01:00
parent 89ca06ce89
commit f05b190ee4

View File

@ -138,6 +138,64 @@ M.setup = function()
]]) ]])
end, end,
}, },
-- mason
{
'WhoIsSethDaniel/mason-tool-installer.nvim',
config = function()
local mason = require('mason-tool-installer')
mason.setup({
ensure_installed = {
'xo',
'textlint',
'yamllint',
'yq',
'ansible-lint',
'xmlformatter',
'typescript-language-server',
'tailwindcss-language-server',
'texlab',
'pyright',
'golines',
'prettier',
'lua-language-server',
'markdownlint',
'black',
'bash-language-server',
'golangci-lint',
'go-debug-adapter',
'editorconfig-checker',
'autopep8',
'beautysh',
'clangd',
'djlint',
'docker-compose-language-service',
'dockerfile-language-server',
'dot-language-server',
'golangci-lint-langserver',
'gopls',
'html-lsp',
'intelephense',
'jq',
'json-lsp',
'jsonlint',
'latexindent',
'lemminx',
'markdown-toc',
'marksman',
'perlnavigator',
'php-debug-adapter',
'twigcs',
'vim-language-server',
'yaml-language-server',
'yamlfix',
},
auto_update = true,
run_on_start = true,
start_delay = 3000,
debounce_hours = 24,
})
end
},
-- minimap -- minimap
{ {
'echasnovski/mini.map', 'echasnovski/mini.map',