added 42 coding stuff

This commit is contained in:
2025-11-18 14:50:52 +01:00
parent 01d3401ad9
commit ba5103f696
6 changed files with 33 additions and 2 deletions

15
lua/plugins/42header.lua Normal file
View File

@@ -0,0 +1,15 @@
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,
}