added todo, commentary, snacks and oil

This commit is contained in:
Nikhil 2025-08-21 23:01:53 +05:30
parent d89fb31004
commit 116c91c155
4 changed files with 107 additions and 1 deletions

View file

@ -41,4 +41,21 @@ return {
end,
},
},
{ -- Git wrapper
'tpope/vim-fugitive',
cmd = { "Git", "G" }, -- lazy load on :Git
},
require('gitsigns').setup {
current_line_blame = true, -- shows git blame at end of line
current_line_blame_opts = {
virt_text = true,
virt_text_pos = 'eol', -- 'eol' | 'overlay' | 'right_align'
delay = 500,
ignore_whitespace = false,
},
current_line_blame_formatter = '<author>, <author_time:%Y-%m-%d> - <summary>',
}
}