Created
December 1, 2011 00:57
-
-
Save michaeltwofish/1412389 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bindkey -d -k kb stuff "\010" | |
term screen-256color | |
shell $SHELL | |
# use the hardstatus line for the window list | |
# alwayslastline - always display the hardstatus as the last line of the | |
# terminal | |
# "%{= kR} %-Lw" - change to a blac[k] background with bright [R]ed text, | |
# and print all the tab [w]indow numbers and titles in | |
# the [L]ong format (ie with flags) upto ('-') the | |
# current tab window | |
# "%{=b Kk} %n%f %t " - change to grey (bright blac[K]) background with | |
# [b]old blac[k] text, with no other effects, and print | |
# the [n]umber of the current tab window, any [f]lags it | |
# might have, and the [t]itle of the current tab window | |
# (as set by zsh - see zshrc). | |
# NOTE: the color match with the caption line makes it | |
# appear as if a 'tab' is dropping down from the caption | |
# line, highlighting the number & title of the current | |
# tab window. Nifty, ain't it) | |
# "%{-}%+Lw " - revert to the previous color scheme (red on black) | |
# and print all the tab [w]indow numbers and titles in | |
# the [L]ong format (ie with flags) after ('+') the | |
# current tab window. | |
# "%=%{= dd}" - pad all the way to the right (since there is no text | |
# that follows this) and revert to the [d]efault | |
# background and [d]efault foreground colors, with no | |
# ('= ') other effects. | |
hardstatus alwayslastline "%{= kR} %-Lw%{=b Kk} %n%f %t %{-}%+Lw %=%{= dd}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment