Add .bashrc

This commit is contained in:
daniele 2023-05-30 18:32:13 +02:00
parent 44f1922399
commit 795c087582
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514

33
.bashrc Normal file
View File

@ -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