Newest version of dotfiles with Ghostty, Fish, kickstart vim and zsh updates

This commit is contained in:
2025-06-04 16:33:07 +02:00
parent ee2a3a74ca
commit 778d39833c
132 changed files with 6177 additions and 5317 deletions

View 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,
},
},
},
}