Add dap for csharp debug and autocmd to build c# project/solution and text template
This commit is contained in:
10
lua/lsp/text-template.lua
Normal file
10
lua/lsp/text-template.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
vim.filetype.add({
|
||||
extension = {
|
||||
tt = "tt",
|
||||
},
|
||||
})
|
||||
|
||||
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
||||
pattern = { "*.tt" },
|
||||
command = "setlocal filetype=tt",
|
||||
})
|
||||
Reference in New Issue
Block a user