From af0007bb8eec369800509eced7a447a61707010f Mon Sep 17 00:00:00 2001 From: Sencyy Date: Tue, 6 Aug 2024 18:26:09 -0300 Subject: [PATCH] add bashrc --- bash/.bashrc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 bash/.bashrc diff --git a/bash/.bashrc b/bash/.bashrc new file mode 100644 index 0000000..3a2ea4a --- /dev/null +++ b/bash/.bashrc @@ -0,0 +1,21 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias ls='ls --color=auto' +alias grep='grep --color=auto' +alias nano='nano -i' +alias stow='stow -t ~/' +alias ls='eza -l' +alias ll='eza -la' +alias ip='ip -c' + +alias cp='cp -v' +alias mv='mv -v' +alias rm='rm -v' +alias mkdir='mkdir -pv' +alias rmdir='rmdir -v' +PS1='[\u@\h \W]\$ '