dotfiles/.config/nvim/lua/plugins/extras/util/esqueleto.lua
2024-01-07 19:25:07 +01:00

20 lines
314 B
Lua

return {
"cvigilv/esqueleto.nvim",
event = "VeryLazy",
opts = {
directories = {
vim.fn.stdpath("config") .. "/templates",
},
patterns = {
-- File
"README",
"LICENSE",
-- Filetype
"sh",
"markdown",
"python",
"lua",
"html",
},
},
}