diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-05-02 00:30:45 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-05-02 00:30:45 +0200 |
commit | 1f05dec8bd65a8163d9cb20308b53f89f4633ae4 (patch) | |
tree | 5b0a62b15f29a0501fc014c3e572ba7b2433a280 /.config/tmux/.tmux.conf | |
parent | 66c0ccc333b52d90163f3e8880644376c6f52321 (diff) |
minor updates
Diffstat (limited to '.config/tmux/.tmux.conf')
-rw-r--r-- | .config/tmux/.tmux.conf | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.config/tmux/.tmux.conf b/.config/tmux/.tmux.conf index 12344cd..0fda630 100644 --- a/.config/tmux/.tmux.conf +++ b/.config/tmux/.tmux.conf @@ -1,6 +1,7 @@ # show session, window, pane in left status bar set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-yank' +set -g @plugin "arcticicestudio/nord-tmux" # Allows vim to display colors correctly. set -g default-terminal 'screen-256color' @@ -18,8 +19,8 @@ setw -g mouse off #setw -g alternate-screen on # split panes using | and - -bind | split-window -h -bind - split-window -v +bind s split-window -h +bind v split-window -v unbind '"' unbind % @@ -53,6 +54,8 @@ bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "pbcopy" bind -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "pbcopy" bind -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "pbcopy" +# 0 is too far from ` ;) +set -g base-index 1 # No delay for escape key press set -sg escape-time 0 |