Is there a way to have borders and decorations? #1802
Unanswered
jasursadikov
asked this question in
Q&A
Replies: 2 comments
-
Also displaying binary files with xxd would be much preferable! |
Beta Was this translation helpful? Give feedback.
0 replies
-
You can use
preview: #!/bin/sh
case "$(file --dereference --brief --mime-type -- "$1")" in
application/octet-stream) xxd "$1";;
*) bat --color=always "$1";;
esac
exit 0 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to have borders like here:

And line numbers in previewer and have a borders between parenting directory and current directory?
I cannot find an information about this in wiki.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions