update plugins

This commit is contained in:
2026-04-14 23:56:16 +09:00
parent c6eb1e5c3d
commit eae41151bb
10 changed files with 75 additions and 37 deletions

View File

@@ -11,9 +11,9 @@
vim.api.nvim_create_augroup("SetCommentString", { clear = true })
vim.api.nvim_create_autocmd("FileType", {
group = "SetCommentString",
pattern = { "hlsl", "cs", "c", "cpp" },
pattern = { "hlsl", "cs", "c", "cpp", "gshdr" },
callback = function()
vim.opt_local.commentstring = "//%s"
vim.opt_local.commentstring = "// %s"
end,
})