30 lines
657 B
Bash
30 lines
657 B
Bash
#ZSH-env
|
|
ZDOTDIR=$HOME
|
|
# display
|
|
export DEFAULT_USER="hate"
|
|
export VDPAU_DRIVER="va_gl"
|
|
export LIBVA_DRIVER_NAME="iHD"
|
|
|
|
# Common apps
|
|
export ZSH=/home/hate/.oh-my-zsh
|
|
export EDITOR=nvim
|
|
export BROWSER=/usr/bin/google-chrome-stable
|
|
export GNUPGHOME="~/.gnupg"
|
|
export SSH_KEY_PATH="~/.ssh/id_rsa"
|
|
|
|
#fzf
|
|
export FZF_CTRL_R_OPTS='--sort --exact'
|
|
export FZF_ALT_C_OPTS="--preview 'tree -C {} | head -200'"
|
|
export FZF_DEFAULT_COMMAND='fd --type f --hidden'
|
|
|
|
# Compilation flags
|
|
export ARCHFLAGS="-arch x86_64"
|
|
|
|
# Borg SSH
|
|
export BORG_RSH='ssh -i /home/hate/.ssh/id_ed25519'
|
|
|
|
# HiDPI
|
|
export GDK_SCALE=2
|
|
export GDK_DPI_SCALE=0.5
|
|
export QT_AUTO_SCREEN_SCALE_FACTOR=1
|