bashrc.d/misc.sh
Luke 11ff24b12d Changes to aliases and restart tools
- added _restart_plasma utility funtion
 - made python aliasing more robust
 - added pip enviornment config to avoid nag messages
 - moved toolchain setup to a single file
2025-01-25 09:59:13 -08:00

21 lines
568 B
Bash

#!/bin/bash
# random things I don't know how to sort
complete -cf sudo
# Include the autojump tool if it exists
if [[ -e /usr/share/autojump/autojump.sh ]]; then
. /usr/share/autojump/autojump.sh
fi
export LESS=RF # colorize less output if we use a pipe
# quit automatically if we only have one screen of stuff
#
export HISTSIZE=10000
export HISTFILESIZE=20000
# added to avoid the need for --break-system-packages when using newer versions
# of PIP.
export PIP_BREAK_SYSTEM_PACKAGES=1
export HISTIGNORE='pwd:exit:fg:bg:top:clear:history:ls:uptime:df'