tmux configuration
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