12 lines
185 B
Lua
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 -->"
|