puntos/.profile

35 lines
787 B
Bash
Executable File

#!/bin/sh
. /etc/profile
ulimit -c unlimited
export PNPM_HOME="$HOME/.local/share/pnpm"
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/go/bin:$PATH"
export PATH="$PNPM_HOME:$PATH"
export ZEIT_DB=~/Sync/zeit.db
export EDITOR=hx
export FZF_DEFAULT_COMMAND='rg -L --hidden --files'
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
export XKB_DEFAULT_VARIANT=altgr-intl
export XKB_DEFAULT_OPTIONS=caps:escape
export XCURSOR_THEME=Adwaita
export SVDIR="$HOME/.local/share/service"
test -f "$HOME/.profile.$(hostname)" && source "$HOME/.profile.$(hostname)"
export REMOTE="${REMOTE:-true}"