add tmux plugin: tmux-sidebar

A sidebar with the directory tree for the current path. Tries to make tmux more IDE like.
This commit is contained in:
2016-07-10 16:46:40 +02:00
parent ed1f9b459c
commit b8052116c6
12 changed files with 545 additions and 3 deletions

4
.tmux/scripts/custom_tree.sh Executable file
View File

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