programs.yazi: add module (#4373)
add module for yazi https://github.com/sxyazi/yazi a terminal rust file browser akin to ranger or joshuto
This commit is contained in:
parent
f8c5fd7509
commit
90e62f96c7
11 changed files with 334 additions and 0 deletions
27
tests/modules/programs/yazi/bash-integration-enabled.nix
Normal file
27
tests/modules/programs/yazi/bash-integration-enabled.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ ... }:
|
||||
|
||||
let
|
||||
shellIntegration = ''
|
||||
function ya() {
|
||||
tmp="$(mktemp -t "yazi-cwd.XXXXX")"
|
||||
yazi --cwd-file="$tmp"
|
||||
if cwd="$(cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then
|
||||
cd -- "$cwd"
|
||||
fi
|
||||
rm -f -- "$tmp"
|
||||
}
|
||||
'';
|
||||
in {
|
||||
programs.bash.enable = true;
|
||||
|
||||
programs.yazi = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
|
||||
test.stubs.yazi = { };
|
||||
|
||||
nmt.script = ''
|
||||
assertFileContains home-files/.bashrc '${shellIntegration}'
|
||||
'';
|
||||
}
|
||||
5
tests/modules/programs/yazi/default.nix
Normal file
5
tests/modules/programs/yazi/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
yazi-settings = ./settings.nix;
|
||||
yazi-bash-integration-enabled = ./bash-integration-enabled.nix;
|
||||
yazi-zsh-integration-enabled = ./zsh-integration-enabled.nix;
|
||||
}
|
||||
27
tests/modules/programs/yazi/keymap-expected.toml
Normal file
27
tests/modules/programs/yazi/keymap-expected.toml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
[[input.keymap]]
|
||||
exec = "close"
|
||||
on = ["<C-q>"]
|
||||
|
||||
[[input.keymap]]
|
||||
exec = "close --submit"
|
||||
on = ["<Enter>"]
|
||||
|
||||
[[input.keymap]]
|
||||
exec = "escape"
|
||||
on = ["<Esc>"]
|
||||
|
||||
[[input.keymap]]
|
||||
exec = "backspace"
|
||||
on = ["<Backspace>"]
|
||||
|
||||
[[manager.keymap]]
|
||||
exec = "escape"
|
||||
on = ["<Esc>"]
|
||||
|
||||
[[manager.keymap]]
|
||||
exec = "quit"
|
||||
on = ["q"]
|
||||
|
||||
[[manager.keymap]]
|
||||
exec = "close"
|
||||
on = ["<C-q>"]
|
||||
8
tests/modules/programs/yazi/settings-expected.toml
Normal file
8
tests/modules/programs/yazi/settings-expected.toml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
[log]
|
||||
enabled = false
|
||||
|
||||
[manager]
|
||||
show_hidden = false
|
||||
sort_by = "modified"
|
||||
sort_dir_first = true
|
||||
sort_reverse = true
|
||||
84
tests/modules/programs/yazi/settings.nix
Normal file
84
tests/modules/programs/yazi/settings.nix
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
programs.yazi = {
|
||||
enable = true;
|
||||
|
||||
keymap = {
|
||||
input.keymap = [
|
||||
{
|
||||
exec = "close";
|
||||
on = [ "<C-q>" ];
|
||||
}
|
||||
{
|
||||
exec = "close --submit";
|
||||
on = [ "<Enter>" ];
|
||||
}
|
||||
{
|
||||
exec = "escape";
|
||||
on = [ "<Esc>" ];
|
||||
}
|
||||
{
|
||||
exec = "backspace";
|
||||
on = [ "<Backspace>" ];
|
||||
}
|
||||
];
|
||||
manager.keymap = [
|
||||
{
|
||||
exec = "escape";
|
||||
on = [ "<Esc>" ];
|
||||
}
|
||||
{
|
||||
exec = "quit";
|
||||
on = [ "q" ];
|
||||
}
|
||||
{
|
||||
exec = "close";
|
||||
on = [ "<C-q>" ];
|
||||
}
|
||||
];
|
||||
};
|
||||
settings = {
|
||||
log = { enabled = false; };
|
||||
manager = {
|
||||
show_hidden = false;
|
||||
sort_by = "modified";
|
||||
sort_dir_first = true;
|
||||
sort_reverse = true;
|
||||
};
|
||||
};
|
||||
theme = {
|
||||
filetype = {
|
||||
rules = [
|
||||
{
|
||||
fg = "#7AD9E5";
|
||||
mime = "image/*";
|
||||
}
|
||||
{
|
||||
fg = "#F3D398";
|
||||
mime = "video/*";
|
||||
}
|
||||
{
|
||||
fg = "#F3D398";
|
||||
mime = "audio/*";
|
||||
}
|
||||
{
|
||||
fg = "#CD9EFC";
|
||||
mime = "application/x-bzip";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
test.stubs.yazi = { };
|
||||
|
||||
nmt.script = ''
|
||||
assertFileContent home-files/.config/yazi/keymap.toml \
|
||||
${./keymap-expected.toml}
|
||||
assertFileContent home-files/.config/yazi/yazi.toml \
|
||||
${./settings-expected.toml}
|
||||
assertFileContent home-files/.config/yazi/theme.toml \
|
||||
${./theme-expected.toml}
|
||||
'';
|
||||
}
|
||||
15
tests/modules/programs/yazi/theme-expected.toml
Normal file
15
tests/modules/programs/yazi/theme-expected.toml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
[[filetype.rules]]
|
||||
fg = "#7AD9E5"
|
||||
mime = "image/*"
|
||||
|
||||
[[filetype.rules]]
|
||||
fg = "#F3D398"
|
||||
mime = "video/*"
|
||||
|
||||
[[filetype.rules]]
|
||||
fg = "#F3D398"
|
||||
mime = "audio/*"
|
||||
|
||||
[[filetype.rules]]
|
||||
fg = "#CD9EFC"
|
||||
mime = "application/x-bzip"
|
||||
27
tests/modules/programs/yazi/zsh-integration-enabled.nix
Normal file
27
tests/modules/programs/yazi/zsh-integration-enabled.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ ... }:
|
||||
|
||||
let
|
||||
shellIntegration = ''
|
||||
function ya() {
|
||||
tmp="$(mktemp -t "yazi-cwd.XXXXX")"
|
||||
yazi --cwd-file="$tmp"
|
||||
if cwd="$(cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then
|
||||
cd -- "$cwd"
|
||||
fi
|
||||
rm -f -- "$tmp"
|
||||
}
|
||||
'';
|
||||
in {
|
||||
programs.zsh.enable = true;
|
||||
|
||||
programs.yazi = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
};
|
||||
|
||||
test.stubs.yazi = { };
|
||||
|
||||
nmt.script = ''
|
||||
assertFileContains home-files/.zshrc '${shellIntegration}'
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue