From 42506d1606fea81a67530a0ff6ed93ec816a1594 Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Fri, 9 Apr 2021 18:00:27 +1000 Subject: Initial lite config --- .bashrc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .bashrc (limited to '.bashrc') diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..1678c21 --- /dev/null +++ b/.bashrc @@ -0,0 +1,18 @@ +# Nick's light .bashrc +# Basically the same as the full version (light already) + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +# Our prompt (user@computer: >>) +PS1="\[\033[38;5;14m\]\u\[$(tput sgr0)\]\[\033[38;5;243m\]@\[$(tput sgr0)\]\[\033[38;5;194m\]\h\[$(tput sgr0)\]\[\033[38;5;243m\]:\[$(tput sgr0)\]\[\033[38;5;15m\]\w \[$(tput sgr0)\]" + +[ ! -z "$SSH_CLIENT" ] && PS1="(SSH) $PS1" + +export HISTFILE="$HOME/.local/share/bash_history" + +# cd by name only is ok +shopt -s autocd + +# Load our aliases +[ -f $HOME/.config/aliasrc ] && . $HOME/.config/aliasrc -- cgit