This commit is contained in:
Saeed Afzal
2023-10-19 09:43:27 +01:00
parent 478bacb10b
commit 0bad0f0929
18 changed files with 233 additions and 449 deletions

View File

@@ -1,20 +1,18 @@
return {
"nvim-telescope/telescope.nvim",
branch = "0.1.x",
dependencies = {
"nvim-telescope/telescope-fzf-native.nvim",
enabled = vim.fn.executable "make" == 1,
build = "make"
"nvim-lua/plenary.nvim",
{ "nvim-telescope/telescope-fzf-native.nvim", build = "make" }
},
cmd = "Telescope",
config = function()
local telescope = require("telescope")
telescope.setup {
defaults = {
layout_strategy = "vertical"
},
file_ignore_patterns = { "node_modules" }
layout_strategy = "vertical",
file_ignore_patterns = { "node_modules" }
}
}
telescope.load_extension("fzf")