Iniital upload

Removing from my nixos config to add congruency with all nvim installs
This commit is contained in:
2025-08-29 00:40:20 -04:00
commit 1c21e3552b
15 changed files with 1121 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
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
}
},
}
}