this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 36a9d3b49ec56a8ac71edc9046ea731bfd84d80d 35 lines 711 B view raw
1return { 2 { 3 "sindrets/diffview.nvim", 4 }, 5 { 6 "ruifm/gitlinker.nvim", 7 opts = { 8 mappings = nil, 9 }, 10 }, 11 { 12 "lewis6991/gitsigns.nvim", 13 opts = { 14 diff_opts = { 15 vertical = true, 16 }, 17 }, 18 }, 19 { 20 "harrisoncramer/gitlab.nvim", 21 cond = function() 22 local remote = vim.fn.system("git remote get-url origin 2>/dev/null") 23 return remote:match("gitlab") ~= nil 24 end, 25 dependencies = { 26 "MunifTanjim/nui.nvim", 27 "nvim-lua/plenary.nvim", 28 "sindrets/diffview.nvim", 29 }, 30 build = function() require("gitlab.server").build(true) end, -- Builds the Go binary 31 config = function() 32 require("gitlab").setup() 33 end, 34 }, 35}