aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc18
1 files changed, 18 insertions, 0 deletions
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