diff options
author | Matt Strapp <matt@mattstrapp.net> | 2022-05-23 16:48:35 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2022-05-23 16:48:35 -0500 |
commit | b46d66e03e33842a61260520146a34768056561f (patch) | |
tree | cc2a890fe7cc2da0eef89b096d163a41b58f4680 /tmux | |
download | dotfiles-b46d66e03e33842a61260520146a34768056561f.tar dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.gz dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.bz2 dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.lz dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.xz dotfiles-b46d66e03e33842a61260520146a34768056561f.tar.zst dotfiles-b46d66e03e33842a61260520146a34768056561f.zip |
Initial commit
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' |