mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-05 08:36:09 +02: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' },
|
|
}
|