1
Fork 0

feat: peek

This commit is contained in:
Matei Adriel 2022-03-13 17:31:17 +02:00
parent b94daf0bd3
commit 9571595b6f
2 changed files with 3 additions and 1 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -36,7 +36,8 @@ local function setupKeybinds(obj, path)
setupKeybinds(keybinds, path .. "." .. name)
else
-- Maps the keybind to the action
mapSilent('n', keybinds, "<cmd>lua require('telescope" .. path .. "')." .. name .. "()<CR>")
mapSilent('n', keybinds, "<cmd>lua require('telescope" .. path ..
"')." .. name .. "()<CR>")
end
end
end