mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
8 lines
155 B
Lua
8 lines
155 B
Lua
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
|
pattern = "*.v",
|
|
callback = function()
|
|
vim.bo.filetype = "verilog"
|
|
end,
|
|
})
|
|
|
|
return {}
|