17 lines
440 B
Plaintext
17 lines
440 B
Plaintext
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
# Set up terminal variables and scripts
|
|
[[ -f ~/.bash_setup.sh ]] && . ~/.bash_setup.sh
|
|
|
|
# Set aliases if aliases exist
|
|
[[ -f ~/.bash_alias.sh ]] && . ~/.bash_alias.sh
|
|
|
|
# Helpful tool: https://bash-prompt-generator.org
|
|
# On github: https://github.com/Scriptim/bash-prompt-generator
|
|
PS1='[\u@\h \w]\$ '
|
|
|
|
# CLI env variables for programs
|
|
EDITOR=nano
|
|
DIFFPROG=difft
|