Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactored: Removed '@type' from all specs, redundant post v2.5. Added 'Neocord' as a new spec. #32

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Prev Previous commit
Update init.lua
  • Loading branch information
AlwaysOutofRange committed Apr 3, 2024
commit 2611f7f644a10da07bdd42f4691ae8ce196bfce7
5 changes: 3 additions & 2 deletions lua/nvcommunity/editor/telescope-undo/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ local spec = {
dependencies = {
{
"debugloop/telescope-undo.nvim",
config = function()
init = function()
local map = vim.keymap.set

map("n", "<leader>fu", "<CMD>Telescope undo<CR>", { desc = "Find undo" })

end,
config = function()
require("telescope").load_extension "undo"
end,
},
Expand Down