dotfiles/dot_config/nvim/lua/plugins/nvim-lspconfig.lua.tmpl
punkfairie 0dc097e9d8
Update .config/nvim/lua/config/lazy.lua
Remove .config/nvim/lua/plugins/chezmoi-vim.lua
Remove .config/nvim/lua/plugins/dim.lua
Remove .config/nvim/lua/plugins/lazygit.lua
Update .config/nvim/lua/plugins/nerdy.lua
Remove .config/nvim/lua/plugins/nvim-devdocs.lua
Update .config/nvim/lua/plugins/nvim-emmet.lua
Update .config/nvim/lua/plugins/nvim-lspconfig.lua
Update .config/nvim/lua/plugins/rose-pine.lua
Update .config/nvim/stylua.toml
Update .config/packages/archgirlie
Update tags
Change attributes of .config/nvim/lua/plugins/conform.lua
Change attributes of .config/nvim/lua/plugins/mason.lua
2024-09-30 20:48:17 -07:00

76 lines
2.2 KiB
Cheetah

return {
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
servers = {
-- data/conf
sqlls = {},
taplo = {},
-- web
html = {
filetypes = { "html", "liquid" },
},
css_variables = { mason = false },
cssls = {},
denols = {},
stylelint_lsp = {
settings = {
stylelintplus = {
autoFixOnFormat = true,
validateOnSave = true,
validateOnType = false,
},
},
},
emmet_language_server = {
filetypes = {
"css",
"eruby",
"html",
"javascriptreact",
"less",
"sass",
"scss",
"pug",
"typescriptreact",
"vue",
"blade",
"liquid",
},
-- 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 = {},
},
},
-- php
phpactor = {
filetypes = { "php", "blade" },
},
-- shell
pkgbuild_language_server = { mason = false },
},
},
},
}