Initial commit

This commit is contained in:
duck
2025-12-17 21:43:32 +05:00
commit 591831666f
38 changed files with 2382 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
local M = {}
local create_alternate = function(border_chars)
return {
border_chars[2],
border_chars[4],
border_chars[6],
border_chars[8],
border_chars[1],
border_chars[3],
border_chars[5],
border_chars[7],
}
end
-- M.border_chars = { "┌", "─", "┐", "│", "┘", "─", "└", "│" }
-- M.border_chars_telescope_results = create_alternate({ "├", "─", "┤", "│", "┘", "─", "└", "│" })
-- M.border_chars_telescope_prompt = create_alternate({ "┌", "─", "┐", "│", "┤", "─", "├", "│" })
M.border_chars = { "", "", "", "", "", "", "", "" }
M.border_chars_telescope_results = create_alternate({ "", "", "", "", "", "", "", "" })
M.border_chars_telescope_prompt = create_alternate({ "", "", "", "", "", "", "", "" })
-- M.border_chars = { "╔", "═", "╗", "║", "╝", "═", "╚", "║" }
-- M.border_chars_telescope_results = create_alternate({ "╠", "═", "╣", "║", "╝", "═", "╚", "║" })
-- M.border_chars_telescope_prompt = create_alternate({ "╔", "═", "╗", "║", "╣", "═", "╠", "║" })
M.border_chars_alternate = create_alternate(M.border_chars)
return M