dotfiles/config/nvim/lua/plugins/telescope.lua

7 lines
260 B
Lua

local map = require('utils').map -- import map
-- telescope keybindings
map('n', 'ff', '<cmd>Telescope find_files<CR>')
map('n', 'fg', '<cmd>Telescope live_grep<CR>')
map('n', 'fb', '<cmd>Telescope buffers<CR>')
map('n', 'fh', '<cmd>Telescope help_tags<CR>')