aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.nnnrc9
1 files changed, 7 insertions, 2 deletions
diff --git a/.nnnrc b/.nnnrc
index 33c9e33..75885d4 100755
--- a/.nnnrc
+++ b/.nnnrc
@@ -4,8 +4,13 @@ if [ ! -d $HOME/.config/nnn/plugins ]; then
curl -Ls https://raw.githubusercontent.com/jarun/nnn/master/plugins/getplugs | sh
fi
-export NNN_PLUG='f:fzcd;v:imgview;j:autojump;p:preview-tabbed'
+export NNN_PLUG='f:fzcd;v:imgview;j:autojump;p:preview-tui'
[ -f /usr/bin/trash ] && export NNN_TRASH=1
export NNN_FIFO=/tmp/nnn.fifo
-alias n='nnn'
+TERMINAL=xterm
+if [[ $TERM =~ 'st' ]]; then
+ TERMINAL=st
+fi
+
+alias n="TERMINAL=$TERMINAL nnn"