diff options
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 |