Compare commits

..

2 commits

Author SHA1 Message Date
797b8856f6 Merge branch 'main' of git.tavo.one:tavo/dotfiles 2025-08-26 23:59:15 -06:00
02f089e0a7 templ 2025-08-26 23:57:25 -06:00

View file

@ -0,0 +1,25 @@
return {
-- 1. Vim syntax plugin for Templ files
{
"joerdav/templ.vim",
ft = "templ",
},
-- 2. Tree-sitter support
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, { "templ" })
end,
},
-- 3. LSP configuration
{
"neovim/nvim-lspconfig",
opts = {
servers = {
templ = {}, -- templ LSP config with default options
},
},
},
}