mirror of
https://github.com/spirit-x64/dotfiles.git
synced 2025-01-19 02:11:57 +03:00
17 lines
244 B
Bash
17 lines
244 B
Bash
{4dc344815bd9392f6bb16773416e89ccbd2d3249 true 244 .bashrc 0xc00b370bd0}
# .bashrc
|
|
|
|
export PATH=$PATH:$HOME/.local/bin
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
# Infinite history
|
|
HISTSIZE= HISTFILESIZE=
|
|
|
|
# Auto cd
|
|
shopt -s autocd
|
|
|
|
source $HOME/.bash_aliases
|