Created
June 7, 2023 01:00
-
-
Save codemonkey76/3457a5ea9ea1c3afdd3360528c8bc27e to your computer and use it in GitHub Desktop.
TMUX Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-option -sa terminal-overrides ",xterm*:Tc" | |
set -g mouse on | |
set -g history-limit 10000 | |
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 | |
unbind C-b | |
set -g prefix C-Space | |
bind C-Space send-prefix | |
bind -n M-H previous-window | |
bind -n M-L next-window | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'christoomey/vim-tmux-navigator' | |
set -g @plugin 'dreamsofcode-io/catppuccin-tmux' | |
set -g @plugin 'tmux-plugins/tmux-yank' | |
set-window-option -g mode-keys vi | |
bind-key -T copy-mode-vi v send-keys -X begin-selection | |
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel | |
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle | |
bind-key '"' split-window -v -c "#{pane_current_path}" | |
bind-key '%' split-window -h -c "#{pane_current_path}" | |
run -b '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment