repos / dotfiles

my dotfiles

dotfiles / dot
Eric Bower  ·  2024-12-27

tmux.conf

 1unbind C-b
 2set-option -g prefix C-Space
 3bind-key C-Space send-prefix
 4
 5# https://unix.stackexchange.com/a/734894
 6set -ag terminal-overrides ",xterm-256color:RGB"
 7# https://unix.stackexchange.com/a/400954
 8set -g default-terminal "xterm-256color"
 9# set-option -ga terminal-overrides ",xterm-256color:Tc"
10set -g set-clipboard on
11set-option -ga update-environment ' SWAYSOCK'
12set-option -ga update-environment ' DISPLAY'
13# https://stackoverflow.com/a/18953148
14set-option -g renumber-windows on
15# Set new panes to open in current directory
16bind c new-window -c "#{pane_current_path}"
17bind '"' split-window -c "#{pane_current_path}"
18bind % split-window -h -c "#{pane_current_path}"
19# fix highlight style
20set-window-option -g mode-style "fg=default,bg=default,reverse"
21
22# List of plugins
23set -g @plugin 'tmux-plugins/tpm'
24set -g @plugin 'tmux-plugins/tmux-sensible'
25set -g @plugin 'christoomey/vim-tmux-navigator'
26set -g @plugin 'tmux-plugins/tmux-yank'
27# set -g @plugin 'tmux-plugins/tmux-sensible'
28set -g @plugin 'dracula/tmux'
29set -g @dracula-plugins "time"
30set -g @dracula-show-timezone false
31set -g @dracula-day-month false
32set -g @dracula-military-time false
33set -g @dracula-show-powerline false
34set -g @dracula-show-left-icon session
35set -g @dracula-show-flags true
36set -g @dracula-git-disable-status true
37
38# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
39run '~/.tmux/plugins/tpm/tpm'