aboutsummaryrefslogtreecommitdiff
path: root/.env
blob: a404b391544100f4bed610325423d271d065b2c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export BROWSER='firefox --new-tab'

TERMINAL=xterm
if [[ $TERM =~ 'st' ]]; then
    TERMINAL=st
fi
export TERMINAL=$TERMINAL

export FZF_DEFAULT_COMMAND='find . -type f'
if [ -f /usr/bin/fd ];then
    export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow --exclude .git'
fi