1
0
Fork 0

nvim: telescope: change keymaps

This commit is contained in:
tastytea 2022-08-13 20:00:59 +02:00
parent 69bd289324
commit ccc1214c3f
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 2 additions and 2 deletions

View File

@ -44,12 +44,12 @@ packer.use {
map('n', '<Leader>tf', function()
builtin.find_files({ cwd = my.get_project_root() })
end)
map('n', '<Leader>tr', builtin.oldfiles)
map('n', '<Leader>to', builtin.oldfiles)
map('n', '<Leader>tg', function()
builtin.live_grep({ cwd = my.get_project_root() })
end)
map('n', '<Leader>tm', builtin.man_pages)
map('n', '<Leader>tp', builtin.registers)
map('n', '<Leader>tr', builtin.registers)
end
}