dotfiles/.config/nvim/lua/plugins/extras/util/esqueleto.lua
2024-01-13 17:38:56 +01:00

21 lines
327 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",
"vue",
},
},
}