Files
KeoviZ/lua/plugins/42header.lua
2025-11-18 14:50:52 +01:00

16 lines
415 B
Lua

return {
"Diogo-ss/42-header.nvim",
cmd = { "Stdheader" },
keys = { "<F1>" },
opts = {
default_map = true, -- Default mapping <F1> in normal mode.
auto_update = true, -- Update header when saving.
user = "mbonnard", -- Your user.
mail = "mbonnard@student.42angouleme.fr", -- Your mail.
-- add other options.
},
config = function(_, opts)
require("42header").setup(opts)
end,
}