From b46d66e03e33842a61260520146a34768056561f Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Mon, 23 May 2022 16:48:35 -0500 Subject: Initial commit --- tmux/.config/tmux/tmux.conf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tmux/.config/tmux/tmux.conf (limited to 'tmux') 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' -- cgit v1.2.3