aboutsummaryrefslogtreecommitdiff
path: root/nnn/.bash/nnn.bash
blob: df93baddb765833a31fed3fefbe33cf377ed36be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# NNN specific config options imported by .bashrc

# Default options:
#   A: no directory autoselection in Nav-as-you-Type mode
#   d: open in detailed mode
#   e: open text files in $VISUAL/$EDITOR/vi
#   o: disable file opening with `l` or `→` (only with `Enter`)
#   r: use patched `mv` and `cp` if available
#      see https://github.com/jarun/nnn/wiki/Advanced-use-cases#cp-mv-progress
#          https://github.com/jarun/advcpmv
export NNN_OPTS="Adeo"
which cpg >/dev/null 2>&1 &&\
    export NNN_OPTS="${NNN_OPTS}r"