File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # mini.diff
2+
3+ Work with diff hunks. Part of 'mini.nvim' library.
4+
5+ ** Repository:** < https://github.com/echasnovski/mini.diff >
Original file line number Diff line number Diff line change 1+ --- @type LazySpec
2+ return {
3+ " echasnovski/mini.diff" ,
4+ event = " User AstroGitFile" ,
5+ opts = function ()
6+ local sign = require (" astroui" ).get_icon " GitSign"
7+ return {
8+ view = {
9+ style = " sign" ,
10+ signs = { add = sign , change = sign , delete = sign },
11+ },
12+ mappings = {
13+ apply = " gh" ,
14+ goto_first = " [G" ,
15+ goto_last = " ]G" ,
16+ goto_next = " ]g" ,
17+ goto_prev = " [g" ,
18+ reset = " gH" ,
19+ textobject = " g" ,
20+ },
21+ }
22+ end ,
23+ specs = {
24+ { " lewis6991/gitsigns.nvim" , enabled = false },
25+ },
26+ }
You can’t perform that action at this time.
0 commit comments