eza but actually, and lay down topgrade

This commit is contained in:
Anthony Cicchetti 2023-09-13 11:17:05 -04:00
parent fe75b6ace1
commit 741c9d33ac
2 changed files with 12 additions and 0 deletions

View file

@ -129,6 +129,16 @@ in {
programs.topgrade = { programs.topgrade = {
enable = true; enable = true;
settings = {
misc = {
disable = ["node" "nix" "home_manager" "gem" "ruby_gems" "cargo" "vim" "pipx" "pip3" "containers"];
run_in_tmux = true;
display_time = true;
skip_notify = true;
};
git.max_concurrency = 5;
linux.arch_package_manager = "paru";
};
}; };
programs.zoxide = { programs.zoxide = {

View file

@ -3,6 +3,8 @@ function ls {
lsd $@ lsd $@
elif [[ "${LS_PICKER}" == "exa" ]]; then elif [[ "${LS_PICKER}" == "exa" ]]; then
exa $@ exa $@
elif [[ "${LS_PICKER}" == "eza" ]]; then
eza $@
else else
/bin/ls $@ /bin/ls $@
fi fi