manual config call to make sure opts are used

This commit is contained in:
2025-07-15 22:47:46 +05:00
parent a574204578
commit def29c9e18

View File

@ -1,5 +1,4 @@
return { return {
{
"lewis6991/gitsigns.nvim", "lewis6991/gitsigns.nvim",
event = "VeryLazy", event = "VeryLazy",
opts = { opts = {
@ -40,7 +39,8 @@ return {
row = 0, row = 0,
col = 1, col = 1,
} }
}
}, },
config = function (_, opts)
require('gitsigns').setup(opts)
end
} }