mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
7 lines
148 B
Lua
7 lines
148 B
Lua
local autocmd = vim.api.nvim_create_autocmd
|
|
|
|
autocmd({ "BufNewFile", "BufRead" }, {
|
|
pattern = { "*.axaml" },
|
|
command = "setfiletype xml"
|
|
})
|