zshrc: update TERM variable, terraform configuration
This commit is contained in:
parent
ffc3044d80
commit
c9b7a98207
7
zshrc
7
zshrc
|
@ -126,8 +126,15 @@ alias gnri="grep -nRi -I --color"
|
|||
# Postgres default user:
|
||||
export PGUSER=postgres
|
||||
|
||||
# Force TERM variable, this avoids issues with TERM=alacritty in SSH sessions:
|
||||
TERM=xterm-256color
|
||||
|
||||
# On boot, power on bluetooth and start xfce
|
||||
if [ $(tty) = "/dev/tty1" ]; then
|
||||
bluetoothctl power on
|
||||
startx
|
||||
fi
|
||||
|
||||
# Automatically added by terraform (vim bundle?):
|
||||
autoload -U +X bashcompinit && bashcompinit
|
||||
complete -o nospace -C /home/rob/bin/terraform terraform
|
||||
|
|
Loading…
Reference in New Issue