Files
dotfiles/tmux.conf
Colin Powell 848336d3d5 Initial commit
This excempts my two emacs configurations for spacemacs and doom-emacs.

THere are still credentials in plaintext and I need to solve how to
store those in git without the credentials.
2018-12-02 12:41:17 -05:00

23 lines
524 B
Bash

bind j select-pane -D
bind k select-pane -U
bind h select-pane -L
bind l select-pane -R
bind | split-window -h
bind - split-window -v
bind -r J resize-pane -D 10
bind -r K resize-pane -U 10
bind -r H resize-pane -L 10
bind -r L resize-pane -R 10
set -g pane-border-fg white
set -g pane-active-border-fg cyan
set -g pane-active-border-bg cyan
set -g status-left "session: #S | window: #I | pane: #P"
set -g prefix C-a
bind-key C-a last-window
set -g default-terminal "screen-256color"
set -g default-command "/bin/bash"