diff options
| -rw-r--r-- | .config/tmux/tmux.conf | 14 | ||||
| -rw-r--r-- | update.sh | 5 |
2 files changed, 18 insertions, 1 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf new file mode 100644 index 0000000..35cf423 --- /dev/null +++ b/.config/tmux/tmux.conf @@ -0,0 +1,14 @@ +set-option -sa terminal-overrides ",xterm*:Tc" + +unbind C-b +set -g prefix C-s + +bind v split-window -v -c "#{pane_current_path}" +bind h split-window -h -c "#{pane_current_path}" + +set -g @plugin "tmux-plugins/tpm" +set -g @plugin "tmux-plugins/tmux-sensible" +set -g @plugin "christoomey/vim-tmux-navigator" +set -g @plugin 'maxpetretta/tmux-monokai-pro' + +run "~/.tmux/plugins/tpm/tpm" @@ -9,5 +9,8 @@ cp -r ~/.config/nvim ./.config/ rm -rf ./.config/nvim/plugin/ # i3 - cp -r ~/.config/i3 ./.config + +# tmux +cp -r ~/.config/tmux ./.config/ +rm -rf ./.config/tmux/plugins/ |
