19 lines
502 B
Bash
Executable File
19 lines
502 B
Bash
Executable File
if [ -f ~/.bashrc ]; then
|
|
source ~/.bashrc
|
|
fi
|
|
|
|
export PS1="\[\033[1;31m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ "
|
|
|
|
export CLICOLOR=1
|
|
export LSCOLORS=ExFxBxDxCxegedabagacad
|
|
|
|
export PATH="$PATH":$HOME/.local/bin:/usr/local/go/bin
|
|
export CPATH="$CPATH":$HOME/.local/lib
|
|
|
|
alias ls='ls -AFh --color'
|
|
alias vim=nvim
|
|
if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ tmux ]] && [ -z "$TMUX" ]; then
|
|
tmux new-session -A && exit
|
|
fi
|
|
neofetch
|