Nvim: add gitea plugin for fugitive

This commit is contained in:
Marko Korhonen 2024-08-08 11:45:57 +03:00
parent 243b82148b
commit e9d20f005d
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890

View file

@ -1,3 +1,12 @@
-- Git commands -- Git commands
--- @type LazyPluginSpec --- @type LazyPluginSpec
return { "tpope/vim-fugitive" } return {
"tpope/vim-fugitive",
dependencies = { "borissov/fugitive-gitea" },
config = function()
vim.g.fugitive_gitea_domains = {
"https://git.korhonen.cc",
"https://git.rossum.fi",
}
end,
}