From 9defcc0d6e965eac235fed4c65301accf8a25086 Mon Sep 17 00:00:00 2001 From: azpsen Date: Thu, 25 Jan 2024 14:51:37 -0600 Subject: [PATCH] Add .bashrc --- .bashrc | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .bashrc diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..b09ea78 --- /dev/null +++ b/.bashrc @@ -0,0 +1,32 @@ +# --------- # +# ~/.bashrc # +# --------- # + +# if not running interactively, don't do anything +[[ $- != *i* ]] && return + +# ------- # +# aliases # +# ------- # + +alias ls='ls --color=auto' +alias grep='grep --color=auto' + +alias ncmpcpp='ncmpcpp -b ~/.config/ncmpcpp/bindings' + +# --- # +# env # +# --- # + +export VISUAL=nvim +export EDITOR="$VISUAL" + +# ------- # +# startup # +# ------- # + +# display system info on startup +pfetch + +# initialize starship prompt +eval "$(starship init bash)"