Files
nvim-config/lua/plugins/git.lua

43 lines
999 B
Lua

-- ╭─────╮
-- │ Git │
-- ╰─────╯
return {
{
"lewis6991/gitsigns.nvim",
opts = function()
return require("plugins.opts.gitsigns")
end,
},
{ "tpope/vim-fugitive" },
{
'akinsho/git-conflict.nvim',
version = "*",
opts = {
default_mappings = true, -- disable buffer local mapping created by this plugin
default_commands = true, -- disable commands created by this plugin
disable_diagnostics = false, -- This will disable the diagnostics in a buffer whilst it is conflicted
list_opener = 'copen',
highlights = {
incoming = 'DiffAdd',
current = 'DiffText',
}
},
config = true
}
-- {
-- -- dir = "~/Documents/Code/monkey-alert.nvim",
-- "dqnid/monkey-alert.nvim",
-- name = "monkey-alert",
-- opts = {
-- monkey_mail_list = require("config.monkeylist"),
-- blame_text_color_hex = "#c0ffee",
-- blame_text = "- Monkey alert 🐒",
-- blame_position = "eol",
-- auto_attach = false,
-- },
-- },
}