aboutsummaryrefslogtreecommitdiff
path: root/nvim/dot-config/nvim/lua/custom/plugins/telescope.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/dot-config/nvim/lua/custom/plugins/telescope.lua')
-rw-r--r--nvim/dot-config/nvim/lua/custom/plugins/telescope.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/nvim/dot-config/nvim/lua/custom/plugins/telescope.lua b/nvim/dot-config/nvim/lua/custom/plugins/telescope.lua
new file mode 100644
index 0000000..00be4c1
--- /dev/null
+++ b/nvim/dot-config/nvim/lua/custom/plugins/telescope.lua
@@ -0,0 +1,15 @@
+return {
+ "nvim-telescope/telescope.nvim",
+ event = "VimEnter",
+ branch = "0.1.x",
+ dependencies = {
+ "nvim-lua/plenary.nvim",
+ { "nvim-telescope/telescope-fzf-native.nvim", build = "make" },
+ { "nvim-telescope/telescope-smart-history.nvim" },
+ { "nvim-telescope/telescope-ui-select.nvim" },
+ { "nvim-tree/nvim-web-devicons" },
+ },
+ config = function()
+ require "custom.telescope"
+ end,
+}