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

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