mirror of
https://github.com/Ascyii/dotfiles.git
synced 2026-01-01 06:54:24 -05:00
20 lines
424 B
Bash
20 lines
424 B
Bash
source $HOME/.common_shell
|
|
|
|
if [ -f /etc/NIXOS ]; then
|
|
eval "$(starship init bash)"
|
|
else
|
|
PS1='\u@\h:\w\$ '
|
|
fi
|
|
|
|
export EDITOR="nvim"
|
|
export PATH=$HOME/programs_local/:~/projects/scripts:$PATH
|
|
|
|
alias r="ranger"
|
|
alias rr="yazi"
|
|
alias oati="~/projects/scripts/oathi.sh"
|
|
alias chch="~/projects/scripts/check_git.sh"
|
|
alias aut="~/projects/scripts/autostart-server.sh"
|
|
alias z="cd"
|
|
alias tt="~/projects/scripts/find_gits.sh"
|
|
|