Created
October 1, 2024 17:55
-
-
Save staycreativedesign/6a54993513d6a92c046048afb37b1c35 to your computer and use it in GitHub Desktop.
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 -g default-terminal 'screen-254color' | |
set-option -g terminal-overrides ',xterm-256color:RGB' | |
set -g prefix ^e | |
set -g base-index 1 # start indexing windows at 1 instead of 0 | |
set -g escape-time 0 # zero-out escape time delay | |
set -g history-limit 1000000 # increase history size (from 2,000) | |
set -g renumber-windows on # renumber all windows when any window is closed | |
set -g set-clipboard on # use system clipboard | |
set -g status-position top # macOS / darwin style | |
set -g default-terminal "${TERM}" | |
setw -g mode-keys vi | |
set -g pane-active-border-style 'fg=magenta,bg=default' | |
set -g pane-border-style 'fg=brightblack,bg=default' | |
bind-key = split-window -h | |
bind-key - split-window -v | |
set -g @catppuccin_flavour 'mocha' | |
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' | |
run '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment