Add telescope-undo
This commit is contained in:
parent
f453a3f2ec
commit
c88dcb4bd9
4
init.lua
4
init.lua
|
@ -502,6 +502,7 @@ require'packer'.startup(function(use)
|
|||
n = {'<Cmd>Telescope notify<CR>', 'Notifications'},
|
||||
m = {'<Cmd>Telescope man_pages<CR>', 'Man pages'},
|
||||
[':'] = {'<Cmd>Telescope commands<CR>', 'Commands'},
|
||||
u = {'<Cmd>Telescope undo<CR>', 'Undo'},
|
||||
}
|
||||
}
|
||||
end}
|
||||
|
@ -520,6 +521,9 @@ require'packer'.startup(function(use)
|
|||
use {'nvim-telescope/telescope-dap.nvim', after = 'telescope.nvim', config = function()
|
||||
require'telescope'.load_extension'dap'
|
||||
end}
|
||||
use {'debugloop/telescope-undo.nvim', config = function()
|
||||
require'telescope'.load_extension('undo')
|
||||
end}
|
||||
use 'kyazdani42/nvim-tree.lua'
|
||||
use 'simrat39/symbols-outline.nvim'
|
||||
use {'folke/which-key.nvim', config = function() require'which-key'.setup() end}
|
||||
|
|
Loading…
Reference in a new issue