mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
13 lines
256 B
Lua
13 lines
256 B
Lua
---@brief
|
|
---
|
|
--- https://templ.guide
|
|
---
|
|
--- The official language server for the templ HTML templating language.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'templ', 'lsp' },
|
|
filetypes = { 'templ' },
|
|
root_markers = { 'go.work', 'go.mod', '.git' },
|
|
}
|