delete unused plugin
This commit is contained in:
@@ -7,7 +7,6 @@ require("romanzy.plugins.telescope")
|
||||
require("romanzy.plugins.nvim-treesitter")
|
||||
require("romanzy.plugins.conform")
|
||||
require("romanzy.plugins.lsp")
|
||||
-- require("romanzy.plugins.header42")
|
||||
require("romanzy.plugins.codamheader")
|
||||
|
||||
-- custom "plugins"
|
||||
|
||||
@@ -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,
|
||||
})
|
||||
@@ -16,10 +16,6 @@
|
||||
"rev": "619363c30309d29ffa631e67c8183f2a72caa373",
|
||||
"src": "https://github.com/stevearc/conform.nvim"
|
||||
},
|
||||
"header42.nvim": {
|
||||
"rev": "d41468df1c53081c909fc78248cf233893b59809",
|
||||
"src": "https://codeberg.org/42nerds/header42.nvim"
|
||||
},
|
||||
"lazygit.nvim": {
|
||||
"rev": "a04ad0dbc725134edbee3a5eea29290976695357",
|
||||
"src": "https://github.com/kdheepak/lazygit.nvim"
|
||||
|
||||
Reference in New Issue
Block a user