dotfiles/.bashrc

23 lines
418 B
Bash
Raw Permalink Normal View History

2023-11-13 01:52:14 +03:00
# .bashrc
2024-07-29 06:30:00 +03:00
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
2024-07-29 06:13:48 +03:00
2024-07-29 06:30:00 +03:00
# User specific environment
export PATH="$HOME/.local/bin:$HOME/bin:$PATH"
# If not running interactively, skip the rest
2023-11-13 01:52:14 +03:00
[[ $- != *i* ]] && return
PS1='[\u@\h \W]\$ '
2024-07-29 06:34:41 +03:00
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
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