puntos/.profile

28 lines
602 B
Text
Raw Normal View History

#!/bin/sh
. /etc/profile
ulimit -c unlimited
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/go/bin:$PATH"
export EDITOR=kak
2022-01-31 19:13:01 +00:00
export FZF_DEFAULT_OPTS='--color=light'
export FZF_DEFAULT_COMMAND='rg -L --hidden --files'
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
test -f "$HOME/.profile.$(hostname)" && source "$HOME/.profile.$(hostname)"
export REMOTE="${REMOTE:-true}"