<leader>f opens ':Telescope find_files<cr>'

This commit is contained in:
Ryan 2024-02-22 20:21:51 -05:00
parent 5f0e8a6a29
commit 810a2957aa
1 changed files with 4 additions and 0 deletions

View File

@ -7,4 +7,8 @@ vim.opt.shiftwidth = 4
vim.opt.tabstop = 4 vim.opt.tabstop = 4
vim.opt.expandtab = true vim.opt.expandtab = true
local map = vim.api.nvim_set_keymap
map('n', '<leader>f', ':Telescope find_files<cr>', {noremap = false, silent = false})
return {} return {}