pentesting-setup/zshrc

20 lines
425 B
Bash
Raw Normal View History

2025-01-05 21:23:26 +01:00
USE_POWERLINE="true"
HAS_WIDECHARS="false"
if [[ -e /usr/share/zsh/manjaro-zsh-config ]]; then
source /usr/share/zsh/manjaro-zsh-config
fi
if [[ -e /usr/share/zsh/manjaro-zsh-prompt ]]; then
source /usr/share/zsh/manjaro-zsh-prompt
fi
alias ls="eza --icons"
alias ll="ls -lga --header"
alias tree="ls -T"
alias cat="bat -S"
alias vim="nvim"
alias mv="mv -i"
eval "$(thefuck --alias)"
eval "$(zoxide init --cmd cd zsh)"