This commit is contained in:
2025-02-16 20:11:07 -08:00
parent 8742b343b3
commit 9f6f878fb7
6 changed files with 148 additions and 67 deletions

View File

@@ -6,6 +6,7 @@ return {
"nat-418/telescope-color-names.nvim",
"nvim-telescope/telescope-file-browser.nvim",
"ghassan0/telescope-glyph.nvim",
"nvim-telescope/telescope-ui-select.nvim",
{
"nvim-telescope/telescope-fzf-native.nvim",
build = "cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release",
@@ -40,6 +41,7 @@ return {
-- actions.which_key shows the mappings for your picker,
-- e.g. git_{create, delete, ...}_branch for the git_branches picker
["<C-h>"] = "which_key",
["<C-u"] = false,
},
},
file_ignore_patterns = { "^node_modules/", "^env/", "^__pycache__/" },
@@ -106,6 +108,15 @@ return {
},
},
},
["ui-select"] = {
require("telescope.themes").get_dropdown({
winblend = 10,
width = 0.5,
prompt = " ",
results_height = 15,
previewer = true,
}),
},
},
},
}