From 795c087582d2343086bd647b44bd7f5721a29d12 Mon Sep 17 00:00:00 2001 From: Daniele Fucini Date: Tue, 30 May 2023 18:32:13 +0200 Subject: [PATCH] Add .bashrc --- .bashrc | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .bashrc diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..f96e28f --- /dev/null +++ b/.bashrc @@ -0,0 +1,33 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +# Complete commands when using sudo and man +complete -cf sudo +complete -c man + +# Aliases +alias cinnamon-restart='nohup cinnamon --replace > /dev/null 2>&1 &' +alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' +alias latex='lualatex' +alias ls='ls -v --color=auto' +alias mutt='pushd ~/Downloads > /dev/null; mutt; popd > /dev/null' +alias sort='sort -n' +alias ssh='ssh -X' +alias sudo='sudo ' +alias vi='vim' + +# PS1 +PS1='[\u@\h \W]\$ ' + +if [ ! -d ~/.cache/mutt ]; then + mkdir ~/.cache/mutt +fi + +export SUDO_EDITOR=rvim +export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/gcr/ssh" + +neofetch