28 lines
546 B
Lua
28 lines
546 B
Lua
return {
|
|
-- Telescope-Konfiguration
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
opts = {
|
|
defaults = {
|
|
file_ignore_patterns = {
|
|
"^.git/",
|
|
"^node_modules/",
|
|
"^vendor/",
|
|
"^.venv/",
|
|
"^__pycache__/",
|
|
},
|
|
},
|
|
},
|
|
dependencies = {
|
|
-- Fuzzy-Finder-Verbesserung
|
|
{
|
|
"nvim-telescope/telescope-fzf-native.nvim",
|
|
build = "make",
|
|
config = function()
|
|
require("telescope").load_extension("fzf")
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
}
|