Refactor contents to be compatible with GNU Stow

This commit is contained in:
Daniel McKnight 2025-05-22 20:04:40 -07:00
parent c931ac6aae
commit e23e66f801
116 changed files with 6 additions and 100 deletions

View file

@ -0,0 +1,22 @@
return {
{
'nvim-telescope/telescope.nvim', tag = '0.1.8',
dependencies = { 'nvim-lua/plenary.nvim' }
},
{
'nvim-telescope/telescope-ui-select.nvim',
config = function()
require("telescope").setup ({
extensions = {
["ui-select"] = {
require("telescope.themes").get_dropdown {
-- even more opts
}
}
}
})
require("telescope").load_extension("ui-select")
end
}
}