dotfiles/.bashrc
2024-07-29 06:30:00 +03:00
Ask

20 lines
311 B
Bash

{eb0515d17745e72dabeabbf0bab40298c2940163 true 311 .bashrc 0xc001ed55e0}

# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
export PATH="$HOME/.local/bin:$HOME/bin:$PATH"
# If not running interactively, skip the rest
[[ $- != *i* ]] && return
PS1='[\u@\h \W]\$ '
# Auto cd
shopt -s autocd
source $HOME/.bash_aliases