LunarVim/lua/lv-telescope/init.lua
christianchiarulli 4e14272f1d more refactor
2021-07-09 22:18:06 -04:00

6 lines
234 B
Lua

local status_ok, telescope = pcall(require, "telescope")
if not status_ok then
return
end
telescope.setup(O.plugin.telescope)
vim.api.nvim_set_keymap("n", "<Leader>f", ":Telescope find_files<CR>", { noremap = true, silent = true })