mirror of
https://github.com/spirit-x64/dotfiles.git
synced 2025-01-18 22:31:46 +03:00
23 lines
418 B
Bash
23 lines
418 B
Bash
{250dbb703c0e8d74ace6cb9ee40a947cc6baa366 true 418 .bashrc 0xc002ab77a0}
# .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]\$ '
|
|
|
|
# Uncomment the following line if you don't like systemctl's auto-paging feature:
|
|
# export SYSTEMD_PAGER=
|
|
|
|
# Auto cd
|
|
shopt -s autocd
|
|
|
|
source $HOME/.bash_aliases
|