Arch 2025 rice. Also contains a newly inspired neovim config.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
set -s escape-time 0set -g focus-events onset-option -g status-style fg=white,bg=black
set-window-option -g mode-keys vi
#set-option -g default-terminal "tmux-256color"#set -sa terminal-overrides ",tmux-256color*:Tc"set-option -sa terminal-overrides ",xterm*:Tc"
unbind-key C-bset-option -g prefix C-abind-key C-a send-prefix
bind c new-window -c "#{pane_current_path}"bind % split-window -h -c "#{pane_current_path}"bind '"' split-window -v -c "#{pane_current_path}"
bind -r k select-pane -Ubind -r j select-pane -Dbind -r h select-pane -Lbind -r l select-pane -Rbind -r r source-file ~/.tmux.confset -g mouse on
bind-key X \ if-shell '[ "$(tmux display -p "#{session_many_attached}")" -gt 0 ]' { # the session is attached to multiple clients, so we can just switch the client to a different session. choose-session } { # we are the last client attached to this session; kill it. # we need to use `run-shell` to ensure that the current session number is expanded *before* we switch to the new session. confirm -p 'Kill #S (y/n)?' { choose-tree -s { run-shell 'tmux switch-client -t "%%" \; kill-session -t "#S"' } } }
set -g @plugin 'tmux-plugins/tpm'set -g @plugin 'TanglingTreats/tmux-everforest' # Adds to the list of pluginsset -g @tmux-everforest 'dark-medium' # Sets the option to select the theme. Also the default.
# Other examples:# set -g @plugin 'github_username/plugin_name'# set -g @plugin 'github_username/plugin_name#branch'# set -g @plugin 'git@github.com:user/plugin'# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)run '~/.tmux/plugins/tpm/tpm'#set-window-option -g status-left " #30S "
|