mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
12 lines
213 B
Lua
12 lines
213 B
Lua
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
|
|
pattern = "*.bean",
|
|
callback = function()
|
|
vim.bo.filetype = "beancount"
|
|
end,
|
|
})
|
|
|
|
|
|
return {
|
|
"nathangrigg/vim-beancount",
|
|
ft = "beancount",
|
|
}
|