Create .bashrc

This commit is contained in:
Rawley Fowler 2022-07-24 13:14:46 -06:00 committed by GitHub
parent 0c6147dde3
commit 812589f9c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

18
void/home/.bashrc Normal file
View file

@ -0,0 +1,18 @@
# .bashrc
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias vim='nvim'
alias vi='nvim'
GEM_HOME="$HOME/.gems"
GOPATH="$HOME/.go"
PATH="$GEM_HOME/bin:/usr/local/bin/go:$GOPATH/bin:$PATH"
PS1='[\u@\h \W]\$ '
export GEM_HOME
export GOPATH
[ -f ~/.fzf.bash ] && source ~/.fzf.bash