added plugins

This commit is contained in:
2025-11-29 20:03:13 +01:00
parent bb0d2cf102
commit 593752ff28
3 changed files with 84 additions and 13 deletions

View File

@@ -257,6 +257,34 @@ return {
vim.lsp.config(server_name, server_config)
end
vim.lsp.config['emmet-language-server'] = {
opts = {
filetypes = { 'css', 'eruby', 'html', 'javascript', 'javascriptreact', 'less', 'sass', 'scss', 'pug', 'typescriptreact' },
-- Read more about this options in the [vscode docs](https://code.visualstudio.com/docs/editor/emmet#_emmet-configuration).
-- **Note:** only the options listed in the table are supported.
init_options = {
---@type table<string, string>
includeLanguages = {},
--- @type string[]
excludeLanguages = {},
--- @type string[]
extensionsPath = {},
--- @type table<string, any> [Emmet Docs](https://docs.emmet.io/customization/preferences/)
preferences = {},
--- @type boolean Defaults to `true`
showAbbreviationSuggestions = true,
--- @type "always" | "never" Defaults to `"always"`
showExpandedAbbreviation = 'always',
--- @type boolean Defaults to `false`
showSuggestionsAsSnippets = false,
--- @type table<string, any> [Emmet Docs](https://docs.emmet.io/customization/syntax-profiles/)
syntaxProfiles = {},
--- @type table<string, string> [Emmet Docs](https://docs.emmet.io/customization/snippets/#variables)
variables = {},
},
},
}
-- Ensure the servers and tools above are installed
--
-- To check the current status of installed tools and/or manually install
@@ -286,6 +314,7 @@ return {
'css-variables-language-server',
'cssmodules-language-server',
'delve',
'emmet-language-server',
'goimports-reviser',
'golangci-lint',
'golangci-lint-langserver',