Files
nvim-config/lua/telescope_configuration.lua
th3r00t 1c21e3552b Iniital upload
Removing from my nixos config to add congruency with all nvim installs
2025-08-29 00:40:20 -04:00

33 lines
639 B
Lua

local vim = vim
local host = vim.loop.os_gethostname()
require('telescope').load_extension('project')
require('telescope').load_extension('ui-select')
require('telescope').setup{
defaults = {
mappings = {
i = {
["<C-u>"] = false,
["<C-d>"] = false,
},
},
},
pickers = {
-- Default configuration for builtin pickers goes here:
-- picker_name = {
-- picker_config_key = value,
-- ...
-- }
-- Now the picker_config_key will be applied every time you call this
-- builtin picker
},
extensions = {
["ui-select"] = {
require("telescope.themes").get_dropdown {
-- even more opts
}
},
}
}