mirror of
https://github.com/danielepintore/dotfiles.git
synced 2026-07-12 16:35:13 +02:00
5 lines
121 B
Lua
5 lines
121 B
Lua
vim.api.nvim_create_autocmd('BufNewFile', {
|
|
pattern = "*.vue",
|
|
command = "0r ~/.config/nvim/templates/vue.template"
|
|
})
|