diff options
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/.config/tmux/tmux.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf new file mode 100644 index 0000000..b04eb3a --- /dev/null +++ b/tmux/.config/tmux/tmux.conf @@ -0,0 +1,23 @@ +set -g mouse on +set -ga terminal-overrides ",xterm-256color:Tc" +set -g default-terminal "tmux-256color" +set -g @plugin "arcticicestudio/nord-tmux" +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'tmux-plugins/tmux-yank' +set -g default-command "${SHELL} -l" +set -g @plugin 'jaclu/tmux-menus' +set -g @plugin 'schasse/tmux-jump' +set -g @plugin 'MunifTanjim/tmux-mode-indicator' + +#ctrl-a for prefix +unbind C-b +set-option -g prefix C-a +bind-key C-a send-prefix + +bind -n M-Left select-pane -L +bind -n M-Right select-pane -R +bind -n M-Up select-pane -U +bind -n M-Down select-pane -D + +#Make sure you have tmux-plugin-manager installed! +run '/usr/share/tmux-plugin-manager/tpm' |