This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dotfiles_old/.bashrc
2018-07-31 21:30:28 +03:00

16 lines
380 B
Bash

[[ $- != *i* ]] && return
unset HISTFILE
export LESSHISTFILE=-
export PYTHONSTARTUP=~/.pythonrc
export XAUTHORITY=~/.cache/.Xauthority
alias ls='ls --color=auto'
alias diff='diff --color=auto'
alias grep='grep --color=auto'
alias installed_packages='comm -23 <(pacman -Qeq | sort) <(pacman -Qgq base base-devel | sort)'
alias unused_packages='pacman -Qtdq'
PS1='\u@\h:\w \$ '