blob: f5333cdcc1fbc6b109028023d6b762861c506fe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
---@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' },
}
|