Add ctrl+e to telescope find files
This commit is contained in:
2
init.lua
2
init.lua
@@ -36,4 +36,4 @@ vim.schedule(function()
|
|||||||
require "mappings"
|
require "mappings"
|
||||||
end)
|
end)
|
||||||
|
|
||||||
vim.o.guifont = "Hasklug Nerd Font Mono:h14"
|
vim.o.guifont = "Hasklug Nerd Font Mono:h14"
|
@@ -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" })
|
Reference in New Issue
Block a user