Add dap for csharp debug and autocmd to build c# project/solution and text template

This commit is contained in:
2025-12-12 14:43:57 +09:00
parent ef447e4845
commit 30ac6080c3
10 changed files with 424 additions and 50 deletions

10
lua/lsp/text-template.lua Normal file
View File

@@ -0,0 +1,10 @@
vim.filetype.add({
extension = {
tt = "tt",
},
})
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
pattern = { "*.tt" },
command = "setlocal filetype=tt",
})