Add ctrl+e to telescope find files

This commit is contained in:
2024-11-22 08:43:55 +01:00
parent 536e8fec88
commit 2bc0ffdcac
2 changed files with 5 additions and 1 deletions

View File

@@ -8,3 +8,7 @@ map("i", "jk", "<ESC>")
-- Easy-align mappings -- Easy-align mappings
map("x", "ga", "<Plug>(EasyAlign)", { silent = true }) map("x", "ga", "<Plug>(EasyAlign)", { silent = true })
map("n", "ga", "<Plug>(EasyAlign)", { silent = true }) map("n", "ga", "<Plug>(EasyAlign)", { silent = true })
map("n", "<C-e>", function()
require("telescope.builtin").oldfiles()
end, { desc = "Open recent files with Telescope" })