From 8e5173a2d25c8f79607f4806016276065abda41c Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Sun, 10 May 2026 18:36:22 -0400 Subject: update --- .bashrc | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .bashrc (limited to '.bashrc') diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..f3e804f --- /dev/null +++ b/.bashrc @@ -0,0 +1,23 @@ +# .bashrc + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +export PATH=$PATH:~/.local/bin +export XDG_RUNTIME_DIR=/tmp/runtime_$(whoami) +export VISUAL=vim +export EDITOR="$VISUAL" + +mkdir -p $XDG_RUNTIME_DIR + +alias ls='ls --color=auto' +alias grep='grep --color=auto' +alias gentag='ctags -R .' + +# Windows does ONE thing right +alias md='mkdir' + +# Coincidentally, nearly the exact prompt I wanted was on the Arch wiki... +GREEN="\[$(tput setaf 10)\]" +RESET="\[$(tput sgr0)\]" +PS1="${GREEN}\w${RESET}>" -- cgit v1.3-2-g0d8e