add diffview

This commit is contained in:
Adithya 2024-06-10 00:57:35 +05:30
parent 57bbc31848
commit 0693f70e8e
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
2 changed files with 7 additions and 0 deletions

View file

@ -16,6 +16,9 @@ require("options")
opts = {
spec = nil,
local_spec = true,
diff = {
cmd = "diffview.nvim",
},
}
require("lazy").setup("plugins", opts)

4
lua/plugins/diffview.lua Normal file
View file

@ -0,0 +1,4 @@
local Plugin = { "sindrets/diffview.nvim" }
Plugin.dependencies = { "nvim-tree/nvim-web-devicons" }
return Plugin