aboutsummaryrefslogtreecommitdiff
path: root/.nnnrc
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2021-11-23 21:57:48 +0800
committerGuangxiong Lin <[email protected]>2021-11-23 21:57:48 +0800
commit0b985e5982c2d3e2bd838a0c2856ee798c38d025 (patch)
tree424f8d4e3d49896e3585c5369c54cc3ad4010401 /.nnnrc
parentae919e3475e39a5c19ea43fc470b32ad3c4f3a49 (diff)
downloaddotfiles-0b985e5982c2d3e2bd838a0c2856ee798c38d025.tar.gz
dotfiles-0b985e5982c2d3e2bd838a0c2856ee798c38d025.tar.bz2
dotfiles-0b985e5982c2d3e2bd838a0c2856ee798c38d025.zip
Update terminal detection when opening nnn
Diffstat (limited to '.nnnrc')
-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"