Add some go stuff.
This commit is contained in:
parent
fb625a268f
commit
930e407017
2 changed files with 19 additions and 1 deletions
18
lua/plugins/templ.lua
Normal file
18
lua/plugins/templ.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
vim.filetype.add({ extension = { templ = "templ" } })
|
||||
return {
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = {
|
||||
templ = {},
|
||||
htmx = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = { "go", "templ" },
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue