mirror of
https://github.com/spirit-x64/dotfiles.git
synced 2025-01-19 05:31:45 +03:00
20 lines
311 B
Bash
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
|