Skip to content

Commit 85367b3

Browse files
committed
feat(nvim): add diffs.nvim and update plugin packages
1 parent c3edc97 commit 85367b3

3 files changed

Lines changed: 91 additions & 130 deletions

File tree

lua/plugins/diffs.lua

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
-- Git diffs syntax highlighting
2+
-- https://github.com/barrettruth/diffs.nvim
3+
4+
return {
5+
"barrettruth/diffs.nvim",
6+
init = function()
7+
vim.g.diffs = {
8+
integrations = {
9+
fugitive = true,
10+
gitsigns = true,
11+
},
12+
}
13+
end,
14+
}

0 commit comments

Comments
 (0)