puntos/.profile

35 lines
787 B
Plaintext
Raw Normal View History

#!/bin/sh
. /etc/profile
ulimit -c unlimited
2022-12-20 16:35:40 +00:00
export PNPM_HOME="$HOME/.local/share/pnpm"
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/go/bin:$PATH"
2022-12-20 16:35:40 +00:00
export PATH="$PNPM_HOME:$PATH"
2022-03-26 22:15:06 +00:00
export ZEIT_DB=~/Sync/zeit.db
2023-01-11 02:28:48 +00:00
export EDITOR=hx
export FZF_DEFAULT_COMMAND='rg -L --hidden --files'
2022-07-10 23:46:27 +00:00
export FZF_DEFAULT_OPTS='--multi --layout=reverse --preview-window=down:60%'
export FZF_CTRL_T_COMMAND='rg -L --hidden --files'
export MOZ_ENABLE_WAYLAND=1
export QT_WAYLAND_DISABLE_WINDOWDECORATION=1
export XKB_DEFAULT_LAYOUT=us
2021-10-08 20:51:40 +00:00
export XKB_DEFAULT_VARIANT=altgr-intl
export XKB_DEFAULT_OPTIONS=caps:escape
export XCURSOR_THEME=Adwaita
2022-10-15 17:52:02 +00:00
export SVDIR="$HOME/.local/share/service"
test -f "$HOME/.profile.$(hostname)" && source "$HOME/.profile.$(hostname)"
export REMOTE="${REMOTE:-true}"