dotfiles/.chezmoitemplates/bashrc

12 lines
291 B
Bash
Raw Normal View History

# 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]\$ '