This commit is contained in:
2023-11-28 14:33:20 +01:00
parent d0da9cfb8f
commit 6ca6561d44
3 changed files with 16 additions and 1 deletions

15
zx_customconfig.fish Normal file
View File

@@ -0,0 +1,15 @@
if status is-interactive
# Commands to run in interactive sessions can go here
end
# A few aliases for exa, a ls replacement
alias ll="exa --sort Name --long --header"
alias la="exa --sort Name --long --all --header"
alias lr="exa --sort Name --long --recurse --header"
alias lra="exa --sort Name --long --recurse --all --header"
alias lt="exa --sort Name --long --tree --header"
alias lta="exa --sort Name --long --tree --all --header"
alias ls="exa --sort Name --header"
# other aliases
alias copy='rsync -ah --progress'