nvim undotree and diffview
This commit is contained in:
parent
345c313eeb
commit
5a4dd97777
|
|
@ -8,8 +8,7 @@ local plugins = {
|
||||||
context = 20,
|
context = 20,
|
||||||
expand = {
|
expand = {
|
||||||
"function",
|
"function",
|
||||||
},
|
}, },
|
||||||
},
|
|
||||||
lazy = false,
|
lazy = false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -112,7 +111,48 @@ local plugins = {
|
||||||
lazy = false,
|
lazy = false,
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "NvChad/nvterm", enabled = false },
|
{
|
||||||
|
"debugloop/telescope-undo.nvim",
|
||||||
|
dependencies = { -- note how they're inverted to above example
|
||||||
|
{
|
||||||
|
"nvim-telescope/telescope.nvim",
|
||||||
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
{ -- lazy style key map
|
||||||
|
"<leader>u",
|
||||||
|
"<cmd>Telescope undo<cr>",
|
||||||
|
desc = "undo history",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
opts = {
|
||||||
|
-- don't use `defaults = { }` here, do this in the main telescope spec
|
||||||
|
extensions = {
|
||||||
|
undo = {
|
||||||
|
-- telescope-undo.nvim config, see below
|
||||||
|
},
|
||||||
|
-- no other extensions here, they can have their own spec too
|
||||||
|
},
|
||||||
|
},
|
||||||
|
config = function(_, opts)
|
||||||
|
-- Calling telescope's setup from multiple specs does not hurt, it will happily merge the
|
||||||
|
-- configs for us. We won't use data, as everything is in it's own namespace (telescope
|
||||||
|
-- defaults, as well as each extension).
|
||||||
|
require("telescope").setup(opts)
|
||||||
|
require("telescope").load_extension("undo")
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"sindrets/diffview.nvim",
|
||||||
|
lazy = false,
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"NvChad/nvterm",
|
||||||
|
enabled = false,
|
||||||
|
},
|
||||||
|
|
||||||
-- To make a plugin not be loaded
|
-- To make a plugin not be loaded
|
||||||
-- {
|
-- {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue