2019-12-12 20:42:59 +00:00
|
|
|
# Don't put duplicate lines or lines starting with space in the history.
|
|
|
|
HISTCONTROL=ignoreboth
|
|
|
|
|
|
|
|
# Prefer vim, but if it's not installed, nano will do
|
2021-05-29 08:48:18 +00:00
|
|
|
if which vim 1>&- 2>&- ; then
|
2019-12-12 20:42:59 +00:00
|
|
|
export EDITOR=vim
|
|
|
|
else
|
|
|
|
export EDITOR=nano
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Some programs, such as tee(1), like to use this variable
|
|
|
|
export LS_COLORS='di=34;40:ln=35;40:so=32;40:pi=33;40:ex=31;40:bd=34;46:cd=34;43:su=0;41:sg=0;46:tw=0;42:ow=0;43:'
|
|
|
|
|
2019-12-12 20:22:29 +00:00
|
|
|
# Enable user extensions for password store
|
|
|
|
export PASSWORD_STORE_ENABLE_EXTENSIONS="true"
|
2020-06-03 12:25:47 +00:00
|
|
|
|
|
|
|
# Set default libvirt connection URI
|
|
|
|
export LIBVIRT_DEFAULT_URI="qemu:///system"
|