1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 19:43:52 +00:00
ultima/modules/home/programs/cli/yazi/lua.nix

74 lines
2.5 KiB
Nix

{ config, ... }:
{
programs.yazi.initLua = with config.lib.stylix.colors; ''
require("no-status"):setup()
require("archivemount"):setup()
require("full-border"):setup { type = ui.Border.ROUNDED, }
require("yatline"):setup({
section_separator = { open = "", close = "" },
part_separator = { open = "", close = "" },
inverse_separator = { open = "", close = "" },
style_a = { fg = "white",
bg_mode = {
normal = "#${base02}",
select = "#${base02}",
un_set = "#${base02}"
}
},
style_b = { bg = "#${base03}", fg = "white" },
style_c = { bg = "black", fg = "white" },
permissions_t_fg = "green",
permissions_r_fg = "yellow",
permissions_w_fg = "red",
permissions_x_fg = "cyan",
permissions_s_fg = "darkgray",
show_background = false,
display_header_line = true,
display_status_line = true,
tab_width = 20,
tab_use_inverse = false,
selected = { icon = "󰻭", fg = "yellow" },
copied = { icon = "", fg = "green" },
cut = { icon = "", fg = "red" },
total = { icon = "󰮍", fg = "yellow" },
succ = { icon = "", fg = "green" },
fail = { icon = "", fg = "red" },
found = { icon = "󰮕", fg = "blue" },
processed = { icon = "󰐍", fg = "green" },
header_line = {
left = {
section_a = { {type = "string", custom = false, name = "tab_path"}, },
section_b = { },
section_c = { }
},
right = {
section_a = { {type = "line", custom = false, name = "tabs", params = {"right"}}, },
section_b = { },
section_c = { {type = "coloreds", custom = false, name = "githead"}, }
}
},
status_line = {
left = {
section_a = { {type = "string", custom = false, name = "tab_mode"}, },
section_b = { {type = "string", custom = false, name = "hovered_size"}, },
section_c = { {type = "coloreds", custom = false, name = "count"}, }
},
right = {
section_a = { {type = "string", custom = false, name = "date", params = {"%d/%m/%Y"}}, },
section_b = { {type = "string", custom = false, name = "hovered_file_extension", params = {true}}, },
section_c = { {type = "coloreds", custom = false, name = "permissions"}, }
}
},
})
require("yatline-githead"):setup()
'';
}