Files
dotfiles/.tmux/scripts/custom_tree.sh
Eragos b8052116c6 add tmux plugin: tmux-sidebar
A sidebar with the directory tree for the current path. Tries to make tmux more IDE like.
2016-07-10 16:46:40 +02:00

4 lines
100 B
Bash
Executable File

#!/usr/bin/env bash
find . -path '*/.git*' -prune -o -print |
sed -e 's;[^/]*/;|___;g;s;___|; |;g'