diff options
| -rw-r--r-- | tmux/tmux.conf | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 8d0ff4c..cddb8cf 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -4,11 +4,15 @@ set -g status-right "#[fg=black,bg=green] #(whoami)@#h|m:#(sh $HOME/.tmux_helper # For a basic tmux configuration without the helper # set -g status-right "#[fg=black,bg=green] #(whoami)@#h" +set status-position bottom +# Despite my preference for vi bindings elsewhere +set status-keys emacs + # If you mark a pane with c-b m you can swap it tapping this bind-key M-s swap-pane # Pretty nifty little option to mirror input for all panes -bind M-s setw synchronize-panes +bind M-s set synchronize-panes # Allow the hotkeys to be switched using M-x to C-x, M-b to C-b, and so forth bind M-x set prefix C-x @@ -16,8 +20,8 @@ bind M-b set prefix C-b bind M-a set prefix C-a # set -g mode-mouse on -setw -g mode-keys vi -# setw -g aggressive-resize on +set -g mode-keys vi +# set -g aggressive-resize on # This has previously not given me any issues other than 'set termguicolors' in # vim |
