Newest version of dotfiles with Ghostty, Fish, kickstart vim and zsh updates
This commit is contained in:
27
.config/nvim.bak/lua/plugins/telescope.lua
Normal file
27
.config/nvim.bak/lua/plugins/telescope.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
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,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user