12 lines
291 B
Bash
12 lines
291 B
Bash
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
# Set enviroment variables here.
|
|
[[ -f ~/.config/bash/envs ]] && . ~/.config/bash/envs
|
|
|
|
# Source (read) `alias` file.
|
|
[[ -f ~/.config/bash/alias ]] && . ~/.config/bash/alias
|
|
|
|
# Customize prompt
|
|
PS1='[\u@\h \W]\$ '
|