dotfiles/home/.config/nvim/lua/plugins/fugitive.lua

13 lines
260 B
Lua
Raw Normal View History

-- Git commands
2023-11-25 14:37:36 +02:00
--- @type LazyPluginSpec
2024-08-08 11:45:57 +03:00
return {
"tpope/vim-fugitive",
dependencies = { "borissov/fugitive-gitea" },
config = function()
vim.g.fugitive_gitea_domains = {
"https://git.korhonen.cc",
"https://git.rossum.fi",
}
end,
}