dotfiles/dot_config/dot_bashrc

16 lines
266 B
Text
Raw Normal View History

2024-04-14 18:41:15 -07:00
#
# ~/.bashrc
#
2024-10-04 22:12:31 -07:00
export HISTFILE="$XDG_STATE_HOME"/bash/history
2024-04-14 18:41:15 -07:00
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias grep='grep --color=auto'
PS1='[\u@\h \W]\$ '
export EDITOR='nvim'
export VISUAL="$EDITOR"