this repo has no description

tmux conf

hailey cff1fc7b f6f84ee6

+66
+66
.tmux.conf
··· 1 + set -g default-terminal "xterm-256color" 2 + set-option -g default-command zsh 3 + 4 + set -g set-clipboard on 5 + 6 + set -g allow-passthrough on 7 + 8 + set -g prefix C-a 9 + unbind C-b 10 + bind-key C-a send-prefix 11 + 12 + unbind % 13 + bind | split-window -h 14 + 15 + unbind '"' 16 + bind - split-window -v 17 + 18 + unbind r 19 + bind r source-file ~/.tmux.conf 20 + 21 + bind -r j resize-pane -D 5 22 + bind -r k resize-pane -U 5 23 + bind -r l resize-pane -R 5 24 + bind -r h resize-pane -L 5 25 + 26 + bind -r m resize-pane -Z 27 + 28 + set -g mouse on 29 + 30 + set-window-option -g mode-keys vi 31 + 32 + bind-key -T copy-mode-vi 'v' send -X begin-selection # start selecting text with "v" 33 + bind-key -T copy-mode-vi 'y' send -X copy-selection # copy text with "y" 34 + 35 + unbind -T copy-mode-vi MouseDragEnd1Pane # don't exit copy mode when dragging with mouse 36 + 37 + # remove delay for exiting insert mode with ESC in Neovim 38 + set -sg escape-time 10 39 + 40 + # tpm plugin 41 + set -g @plugin 'tmux-plugins/tpm' 42 + 43 + # list of tmux plugins 44 + set -g @plugin 'christoomey/vim-tmux-navigator' 45 + # set -g @plugin 'jimeh/tmux-themepack' 46 + set -g @plugin 'tmux-plugins/tmux-resurrect' # persist tmux sessions after computer restart 47 + set -g @plugin 'tmux-plugins/tmux-continuum' # automatically saves sessions for you every 15 minutes 48 + 49 + # theme 50 + set -g @plugin 'catppuccin/tmux' 51 + set -g @catppuccin_flavor 'frappe' # or frappe, macchiato, mocha 52 + # set -g @catppuccin_flavor 'latte' # or frappe, macchiato, mocha 53 + # set -g @catppuccin_window_tabs_enabled on # or off to disable window_tabs 54 + # set -g @catppuccin_date_time "%Y-%m-%d %H:%M" 55 + # set -g @catppuccin_left_separator "█" 56 + # set -g @catppuccin_right_separator "█" 57 + # set -g @catppuccin_host "on" 58 + 59 + # set -g @themepack 'powerline/default/cyan' 60 + 61 + set -g @resurrect-capture-pane-contents 'on' 62 + set -g @continuum-restore 'on' 63 + 64 + # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) 65 + run '/usr/bin/zsh -c "~/.tmux/plugins/tpm/tpm"' 66 +