delete unused plugin

This commit is contained in:
2026-07-03 14:08:13 +02:00
parent 199c37fe89
commit ac6b9739a5
3 changed files with 0 additions and 32 deletions

View File

@@ -7,7 +7,6 @@ require("romanzy.plugins.telescope")
require("romanzy.plugins.nvim-treesitter") require("romanzy.plugins.nvim-treesitter")
require("romanzy.plugins.conform") require("romanzy.plugins.conform")
require("romanzy.plugins.lsp") require("romanzy.plugins.lsp")
-- require("romanzy.plugins.header42")
require("romanzy.plugins.codamheader") require("romanzy.plugins.codamheader")
-- custom "plugins" -- custom "plugins"

View File

@@ -1,27 +0,0 @@
vim.pack.add({
{ src = "https://codeberg.org/42nerds/header42.nvim" },
})
local function load_header42()
-- Prevent double loading
if _G.header42_loaded then return end
_G.header42_loaded = true
-- Configure the plugin
require("header42").setup({
-- autocmd = { create = false },
username = "rvolovoy",
email = "rvolovoy@student.codam.nl",
})
end
-- load it right away
-- load_header42();
vim.api.nvim_create_autocmd("FileType", {
pattern = { "c", "cpp", "python" },
once = true,
callback = function()
load_header42()
end,
})

View File

@@ -16,10 +16,6 @@
"rev": "619363c30309d29ffa631e67c8183f2a72caa373", "rev": "619363c30309d29ffa631e67c8183f2a72caa373",
"src": "https://github.com/stevearc/conform.nvim" "src": "https://github.com/stevearc/conform.nvim"
}, },
"header42.nvim": {
"rev": "d41468df1c53081c909fc78248cf233893b59809",
"src": "https://codeberg.org/42nerds/header42.nvim"
},
"lazygit.nvim": { "lazygit.nvim": {
"rev": "a04ad0dbc725134edbee3a5eea29290976695357", "rev": "a04ad0dbc725134edbee3a5eea29290976695357",
"src": "https://github.com/kdheepak/lazygit.nvim" "src": "https://github.com/kdheepak/lazygit.nvim"