Last active
December 23, 2015 20:29
-
-
Save amejiarosario/6689656 to your computer and use it in GitHub Desktop.
Tmux conf and cheatsheet
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
# start with index 1 instead of 0 | |
set -g base-index 1 | |
# active window title colors | |
set-window-option -g window-status-current-fg white | |
set-window-option -g window-status-current-bg blue | |
# Status Bar with Hours and seconds | |
set status-right '"#22T" %H:%M:%S %d-%b-%y' | |
set status-interval 1 | |
# C-b :source-file ~/.tmux.conf | |
# http://wiki.gentoo.org/wiki/Tmux |
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
# TODO cheatsheet | |
# add horizontal split of 20 lines | |
C-b :splitw -v -p 20 | |
# add VERTICAL split of 20 lines | |
C-b :splitw -h -p 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment