-- -- Author : Dennis Eriksen -- File : lazytempl.lua -- Created : 2024-02-09 -- -- lazytempl -- - a *really* lazy template plugin local patterns = { "*.bash", "*.html", "*.lua", "*.pl", "*.pm", "*.py", "*.py3", "*.sh", "*.vim", "*.zsh", } return { "lazytempl", virtual = true, event = function() local events = {} for _, v in ipairs(patterns) do table.insert(events, "BufNewFile " .. v) end return events end, config = function() vim.cmd("0r !vimtem.pl -d ~/.vim/templates -f " .. vim.fn.expand("@%")) vim.cmd("silent! %s/{\\$cursor}") end, }