dotfiles/.bashrc

14 lines
199 B
Bash
Raw Normal View History

2023-11-13 01:52:14 +03:00
# .bashrc
2024-07-29 06:13:48 +03:00
export PATH=$PATH:$HOME/.local/bin
2023-11-13 01:52:14 +03:00
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
PS1='[\u@\h \W]\$ '
2023-12-25 01:18:28 +03:00
# Auto cd
shopt -s autocd
2023-11-13 01:52:14 +03:00
source $HOME/.bash_aliases