dotfiles/dot_bashrc

14 lines
218 B
Text
Raw Normal View History

2024-04-14 18:41:15 -07:00
#
# ~/.bashrc
#
# 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"