diff options
Diffstat (limited to 'tmux/.tmux.conf')
| -rw-r--r-- | tmux/.tmux.conf | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..94e91f1 --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,49 @@ +set -g base-index 1 +set -g pane-base-index 1 +set-window-option -g pane-base-index 1 +set-option -g renumber-windows on +set -g status-interval 1 +set -sg escape-time 0 + +set -g mouse on +set-window-option -g xterm-keys on + +bind-key Up select-pane -U +bind-key Down select-pane -D +bind-key Left select-pane -L +bind-key Right select-pane -R + +bind -n 'M-Up' select-pane -U +bind -n 'M-Down' select-pane -D +bind -n 'M-Left' select-pane -L +bind -n 'M-Right' select-pane -R + +set -g mouse on +set -g renumber-windows on +set -g set-titles off +set -g status-position bottom +set -g status on +set -g default-terminal "xterm-256color" +set -g terminal-overrides "xterm-256color:Tc" + +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'xamut/tmux-weather' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'tmux-plugins/tmux-yank' +set -g @plugin 'robhurring/tmux-spotify' +set -g @plugin 'tmux-plugins/tmux-battery' +set -g @plugin 'tukaloff/tmux-kanso' +set -g @plugin 'tmux-plugins/tmux-cpu' +set -g @plugin 'jamesoff/tmux-loadavg' + +# set -g @kanso_flavor "pearl" +set -g @kanso_window_status_style "basic" +set -g @kanso_window_current_text " #W" +set -g @kanso_window_text " #W" +# set -g @kanso_window_current_number_color "#22262D" + +run '~/.tmux/plugins/tpm/tpm' + +set -g pane-border-status bottom +set -g pane-border-style "fg=#090E13" +set -g pane-active-border-style "fg=#090E13" |