# # ~/.bashrc # # If not running interactively, don't do anything [[ $- != *i* ]] && return export HISTSIZE=100000 export HISTFILESIZE=100000 export PATH="$HOME/.bin:$PATH" # define a default editor if [ -x "$(command -v code)" ]; then export EDITOR='code -w' elif [ -x "$(command -v vim)" ]; then export EDITOR=vim elif [ -x "$(command -v vi)" ]; then export EDITOR=vi fi # enable wayland export QT_QPA_PLATFORM=wayland-egl export MOZ_ENABLE_WAYLAND=1 function sqlsetup { sudo mount -t drvfs '\\hldnt352.berner.lan\softwaredepot/common/microsoft/sqlsetup/scripts' ~/shares/sqlsetup rm -r ~/shares/sqlsetup/* cp -a ~/git/sqlsetup/* ~/shares/sqlsetup/ } source /usr/share/git/git-prompt.sh PS1='`[ $? = 0 ] || echo "$? "`[\u@\h \w`__git_ps1 " (%s)"`]\$ ' alias ls='ls --color=auto' alias ip='ip --color=auto' alias autopurge='sudo pacman -Rns $(pacman -Qdtq)' alias syu='sudo pacman -Syu; sudo pacman -Rns $(pacman -Qdtq); pacman -Qem; auracle sync' alias d-u='sudo apt update && sudo apt full-upgrade && sudo apt --purge autoremove && sudo apt clean' alias pp='git pull -r && git push' alias statdiff='git status && git diff --staged' alias gcode='git pull -r && code . && exit' # workaround for missing alacritty terminfo on remote terminals # https://github.com/alacritty/alacritty/issues/3360#issuecomment-588441023 alias ssh='TERM=xterm-256color ssh'