Files
Initial_linux_setup/zx_customconfig.fish

26 lines
815 B
Fish
Raw Normal View History

2023-11-28 14:33:20 +01:00
if status is-interactive
# Commands to run in interactive sessions can go here
end
2023-11-29 12:47:39 +01:00
# functions and changes
set -U fish_prompt_pwd_dir_length 0
function fish_greeting
2023-11-29 13:07:36 +01:00
neofetch --config /etc/neofetch/config.conf --ascii /etc/neofetch/ascii/st_combadge.ascii
2023-11-29 12:47:39 +01:00
end
2023-11-28 14:33:20 +01:00
# 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"
2024-01-12 09:34:51 +01:00
alias lt="exa --sort Name --long --tree --header --level 2"
2023-11-28 14:33:20 +01:00
alias lta="exa --sort Name --long --tree --all --header"
alias ls="exa --sort Name --header"
2024-01-12 09:34:51 +01:00
alias lg="exa --sort Name --long --all --header -G"
alias df="duf"
2024-04-15 12:41:49 +02:00
alias dc="docker compose"
2023-11-28 14:33:20 +01:00
# other aliases
2023-11-29 12:24:15 +01:00
alias copy='rsync -ah --progress'