initial commit

This commit is contained in:
2025-10-14 12:29:46 +02:00
parent 0439bb0ff7
commit 903704e4d7
99 changed files with 8495 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
local M = {}
M.find_directories = function()
local pickers = require("telescope.pickers")
local finders = require("telescope.finders")
local conf = require("telescope.config").values
pickers.new({}, {
prompt_title = "Finde Directories",
__locations_input = true,
finder = finders.new_oneshot_job({ "find", "-type", "d" }, {
entry_maker = function(entry)
return {
value = entry,
display = '' .. entry,
ordinal = entry,
}
end
}),
sorter = conf.file_sorter()
}):find()
end
return M