diff options
Diffstat (limited to 'tmux/tmux.conf')
| -rw-r--r-- | tmux/tmux.conf | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf index c86cc6c..1a970d4 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -12,8 +12,10 @@ set -g mode-keys vi set -g editor $EDITOR set -g renumber-windows on +# Keybinds +if-shell 'test -n "$SSH_CLIENT"' 'source-file ~/.config/tmux/remote.tmux.conf' -#vi bindings +## vi bindings unbind-key h unbind-key j unbind-key k @@ -23,11 +25,12 @@ bind-key j select-pane -D bind-key k select-pane -U bind-key l select-pane -R -# Pane splitting +## Pane splitting bind | split-window -h bind _ split-window -v +# Themeing +set -g set-titles on +set -g set-titles-string "tmux - #{user}@#h - #S:#W" -# Sourcing source-file ~/.config/tmux/theme.tmux.conf -if-shell 'test -n "$SSH_CLIENT"' 'source-file ~/.config/tmux/remote.tmux.conf' |
