nvim: config upgrade and add verilog support

This commit is contained in:
js0ny 2025-10-29 02:24:13 +00:00
parent 05c0b65b3b
commit 7540d37422
6 changed files with 77 additions and 11 deletions

View file

@ -0,0 +1,8 @@
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
pattern = "*.v",
callback = function()
vim.bo.filetype = "verilog"
end,
})
return {}