-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
So it seems your terminal does not have color capabilities. Try:
|
Beta Was this translation helpful? Give feedback.
-
Show the full output of |
Beta Was this translation helpful? Give feedback.
Simple script which does the task:
#!/bin/bash
#O_DEBUG := 0 # debug binary
#O_NORL := 0 # no readline support
#O_PCRE := 0 # link with PCRE library
#O_NOLOC := 0 # no locale support
#O_NOMOUSE := 0 # no mouse support
#O_NOBATCH := 0 # no built-in batch renamer
#O_NOFIFO := 0 # no FIFO previewer support
#O_CTX8 := 0 # enable 8 contexts
#O_ICONS := 0 # support icons-in-terminal
O_NERD := 0 # support icons-nerdfont
#O_QSORT := 0 # use Alexey Tourbin's QSORT implementation
#O_BENCH := 0 # benchmark mode (stops at first user input)
#O_NOSSN := 0 # enable session support
#O_NOUG := 0 # disable user, group name in status bar
git clone https://github.com/jarun/nnn.git
PATH_OLD = $(echo $PATH)
e…