From 812589f9c0f42971ce4f59fe4132117552874c62 Mon Sep 17 00:00:00 2001 From: Rawley Fowler <75388349+rawleyfowler@users.noreply.github.com> Date: Sun, 24 Jul 2022 13:14:46 -0600 Subject: [PATCH] Create .bashrc --- void/home/.bashrc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 void/home/.bashrc diff --git a/void/home/.bashrc b/void/home/.bashrc new file mode 100644 index 0000000..4ac6c62 --- /dev/null +++ b/void/home/.bashrc @@ -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