1
0
Fork 0

typst commentstring fix

This commit is contained in:
zymon 2025-02-15 14:30:16 +01:00
parent c2fbed0efc
commit c890b5556c

View file

@ -222,7 +222,7 @@ return {
config = true, config = true,
}, },
{ {
"folke/persistence.nvim", "https://github.com/folke/persistence.nvim",
event = "BufReadPre", -- this will only start session saving when an actual file was opened event = "BufReadPre", -- this will only start session saving when an actual file was opened
keys = { keys = {
{"<leader>qs", function() require("persistence").load() end, desc = "load session from cwd"}, {"<leader>qs", function() require("persistence").load() end, desc = "load session from cwd"},
@ -234,4 +234,13 @@ return {
-- add any custom options here -- add any custom options here
} }
}, },
{
"https://github.com/folke/ts-comments.nvim",
opts = {
lang = {
typst = "// %s",
},
},
event = "VeryLazy",
},
} }