Files
2026-05-17 05:50:39 +02:00

12 lines
185 B
Lua

if vim.b.did_ftplugin then
return
end
vim.b.did_ftplugin = true
local ok = pcall(vim.treesitter.start, 0, "tumblr")
if not ok then
return
end
vim.bo.commentstring = "<!-- %s -->"