dotfiles/.profile

30 lines
735 B
Text
Raw Normal View History

#
# ~/.profile -- Included by .bash_profile; includes ~/.profile.local
#
# SSH key agent is started by systemd user
2019-08-16 19:32:31 +02:00
#export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.sock"
2018-11-01 01:04:07 +01:00
# GPG key stuff
export GPG_TTY=$(tty)
# Environment variables
export TERM=xterm-color
export TERMINAL=mate-terminal
2018-11-01 01:04:07 +01:00
export EDITOR=vim
2021-02-13 17:24:59 +01:00
export BROWSER=firefox
export BC_ENV_ARGS="-lq"
[[ -f "$HOME/.bcrc" ]] && export BC_ENV_ARGS="$BC_ENV_ARGS $HOME/.bcrc"
2018-11-01 01:04:07 +01:00
# PATH
[[ -d "$HOME/bin" ]] && export PATH="$HOME/bin:$PATH"
2018-11-01 01:04:07 +01:00
# Wine: do not change filetype associations
export WINEDLLOVERRIDES=winemenubuilder.exe=d
# Firefox: Enable pixel-perfect scrolling
export MOZ_USE_XINPUT2=1
# Include host-specific .profile
[ -f ~/.profile.local ] && source ~/.profile.local