Android : Add yazi and chafa.
This commit is contained in:
parent
a8194a669d
commit
ddb63b2285
|
@ -27,6 +27,7 @@
|
||||||
tree
|
tree
|
||||||
wget
|
wget
|
||||||
yt-dlp
|
yt-dlp
|
||||||
|
yazi chafa
|
||||||
zip unzip
|
zip unzip
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
nvim = import ../common/nvim args;
|
nvim = import ../common/nvim args;
|
||||||
ssh = import ../common/ssh args;
|
ssh = import ../common/ssh args;
|
||||||
tmux = import ../common/tmux args;
|
tmux = import ../common/tmux args;
|
||||||
|
yazi = import ../../user/common/yazi args;
|
||||||
in {
|
in {
|
||||||
time.timeZone = const.timeZone;
|
time.timeZone = const.timeZone;
|
||||||
nix.extraOptions = nix.extraOptions;
|
nix.extraOptions = nix.extraOptions;
|
||||||
|
@ -29,6 +30,10 @@ in {
|
||||||
".ssh/config".text = ssh.config;
|
".ssh/config".text = ssh.config;
|
||||||
".termux/_font.ttf".source = termux.font;
|
".termux/_font.ttf".source = termux.font;
|
||||||
".termux/_colors.properties".text = termux.colors;
|
".termux/_colors.properties".text = termux.colors;
|
||||||
|
".config/yazi/init.lua".source = yazi.init;
|
||||||
|
".config/yazi/keymap.toml".source = yazi.keymap;
|
||||||
|
".config/yazi/theme.toml".source = yazi.theme;
|
||||||
|
".config/yazi/yazi.toml".source = yazi.yazi;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -9,14 +9,15 @@
|
||||||
# Usage: l [DIRS]
|
# Usage: l [DIRS]
|
||||||
function l() {
|
function l() {
|
||||||
# ls -lhv --si --group-directories-first --color=auto -- "$@"
|
# ls -lhv --si --group-directories-first --color=auto -- "$@"
|
||||||
ccd
|
ccd "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
# List last modified files first.
|
# List last modified files first.
|
||||||
# Current dir by default.
|
# Current dir by default.
|
||||||
# Usage: ll [DIRS]
|
# Usage: ll [DIRS]
|
||||||
function ll() {
|
function ll() {
|
||||||
ls -lhvtr --si --color=auto -- "$@"
|
ls -lhv --si --group-directories-first --color=auto -- "$@"
|
||||||
|
# ls -lhvtr --si --color=auto -- "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
# List files in tree structure.
|
# List files in tree structure.
|
||||||
|
|
Loading…
Reference in a new issue