From e977928c1f3da126d7f12f25c30227cae6d8c31d Mon Sep 17 00:00:00 2001 From: The_miro Date: Wed, 6 Nov 2024 18:30:08 +0100 Subject: [PATCH] added bash --- .bashrc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .bashrc diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..7bd0d39 --- /dev/null +++ b/.bashrc @@ -0,0 +1,12 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +alias grep='grep --color=auto' +PS1='[\u@\h \W]\$ ' + +eval "$(starship init bash)"