Last active
March 3, 2025 09:01
-
-
Save oca159/69f7aab040d3f462cc26accabbd4ea67 to your computer and use it in GitHub Desktop.
tmux
This file contains 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 terminal colors | |
set-option -sa terminal-overrides ",xterm*:Tc" | |
# Enable mouse support | |
set -g mouse on | |
# Start windows and panes at 1, not 0 | |
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 | |
# kill pane | |
bind-key x kill-pane | |
# Pane resizing | |
bind -n M-h resize-pane -L | |
bind -n M-l resize-pane -R | |
bind -n M-k resize-pane -U | |
bind -n M-j resize-pane -D | |
# Move window to the left | |
bind -n M-i swap-window -t -1 | |
# Move window to the right | |
bind -n M-o swap-window -t +1 | |
# Set vi mode | |
set-window-option -g mode-keys vi | |
# Use visual selection mode as vi | |
bind-key -T copy-mode-vi v send-keys -X begin-selection | |
bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle | |
bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel | |
# Save and restore session | |
set -g @resurrect-save 'S' | |
set -g @resurrect-restore 'R' | |
# Tmux theme | |
set -g @catppuccin_flavour 'mocha' | |
set -g @catppuccin_right_separator "█" | |
TMUX_FZF_ORDER="session|window|pane|command|keybinding" | |
TMUX_FZF_OPTIONS="-p -w 90% -h 70% -m" | |
# more options here: https://github.com/sainnhe/tmux-fzf/issues/6#issuecomment-578750879 | |
bind w run-shell -b "~/.config/tmux/plugins/tmux-fzf/scripts/window.sh switch" | |
# Plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'sainnhe/tmux-fzf' | |
set -g @plugin 'christoomey/vim-tmux-navigator' | |
set -g @plugin 'dreamsofcode-io/catppuccin-tmux' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set -g @plugin 'tmux-plugins/tmux-continuum' | |
set -g @resurrect-strategy-nvim 'session' | |
run '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment