Created
October 12, 2018 19:24
-
-
Save mhayes/ea90ac17f0dbb4ed6d1d33a4558a23c5 to your computer and use it in GitHub Desktop.
tmux configuration
This file contains 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
unbind C-b | |
set -g prefix C-s | |
unbind + | |
bind + new-window -d -n tmux-zoom 'clear && echo TMUX ZOOM && read' \; swap-pane -s tmux-zoom.0 \; select-window -t tmux-zoom | |
unbind - | |
bind - last-window \; swap-pane -s tmux-zoom.0 \; kill-window -t tmux-zoom | |
bind r source-file ~/.tmux.conf \; display "configuration file reloaded." | |
#set window numbering at 1 | |
set -g base-index 1 | |
#set terminal | |
set -g default-terminal "screen-256color" | |
#themeing | |
set -g status-bg black | |
set -g status-fg white | |
setw -g window-status-fg white | |
setw -g window-status-bg black | |
setw -g window-status-attr dim | |
setw -g window-status-current-fg white | |
setw -g window-status-current-bg red | |
setw -g window-status-current-attr bright | |
set -g pane-border-fg green | |
set -g pane-border-bg black | |
set -g pane-active-border-fg white | |
set -g pane-active-border-bg yellow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment