From b5411d9161dcfe56f14da8216c11f0e5c936f88f Mon Sep 17 00:00:00 2001 From: Florestan Bredow Date: Tue, 16 Aug 2022 23:04:14 +0200 Subject: [PATCH] Add bash config --- .bashrc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .bashrc diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..b4f9b46 --- /dev/null +++ b/.bashrc @@ -0,0 +1,10 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +alias dotfiles='/usr/bin/git --git-dir=$HOME/.config/dotfiles/ --work-tree=$HOME' +PS1='[\u@\h \W]\$ '