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

15 lines
395 B
Lua
Raw Normal View History

-- File finder
-- https://github.com/nvim-telescope/telescope.nvim
return {
"nvim-telescope/telescope.nvim",
branch = "0.1.x",
dependencies = {
"nvim-lua/plenary.nvim", -- Lua helper
"jremmen/vim-ripgrep", -- Grep integration
"nvim-tree/nvim-web-devicons"
},
config = function()
require("plugins/telescope/mappings")
end
}