Use lazy.nvim

This commit is contained in:
Saeed Afzal
2023-04-29 12:34:36 +01:00
parent 17ab6018fb
commit 86cc9b52ec
28 changed files with 308 additions and 493 deletions

20
lua/plugins/telescope.lua Normal file
View File

@@ -0,0 +1,20 @@
return {
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-telescope/telescope-fzf-native.nvim",
enabled = vim.fn.executable "make" == 1,
build = "make"
},
cmd = "Telescope",
opts = {
defaults = {
layout_strategy = "vertical"
},
file_ignore_patterns = { "node_modules" }
},
config = function()
local telescope = require("telescope")
telescope.load_extension("fzf")
end
}