Files
dotfiles/tmux/tmux.conf
2024-06-07 11:20:07 +02:00

173 lines
5.3 KiB
Bash

# ========= Settings =========
set -g default-terminal "xterm"
set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm' # undercurl support
set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m' # underscore colours - needs tmux-3.0
# Base index for windows
set -g base-index 1
setw -g pane-base-index 1
# Automatically rename windows when their program exits
set -g automatic-rename on
set-option -g automatic-rename-format "#(tmux-icon-name #{pane_current_command})"
# Rename the current window
bind-key v command-prompt "rename-window '%%'"
# Base index for panes
set-window-option -g pane-base-index 1
# copy to system clipboard
set -g set-clipboard on
# tmux messages are displayed for 4 seconds
set -g display-time 4000
# tmux restore last session
set -g @continuum-restore 'on'
# Refresh status
set -g status-interval 1
# Set focus events for Vim
set -g focus-events on
# Allow passthrough color escape sequences (Base16)
# set -g allow-passthrough 1
# History
set-option -g history-limit 50000
# Act like vim
setw -g mode-keys vi
set -g status-keys vi
set -sg escape-time 0
# Renumber windows sequentially after closing any of them
set -g renumber-windows on
# Status Bar
set -g status-position top
set -g status-style 'bg=default,fg=white' # transparent status bar
# Pane Style
set -g pane-border-style "fg=brightblack,bg=default"
set -g pane-active-border-style "fg=white,bg=default"
# Bar Left
set -g status-left-length 100
set -ga status-left "#[fg=white,nobold]"
set -g status-left "#[fg=#84AEF0,bg=default]#[fg=#000000,bg=#84AEF0,bold]#S#[fg=#84aef0,bg=default]#[fg=white,bg=default] #(gitmux -timeout 500ms -cfg $HOME/.gitmux.conf)#[fg=white] ❭ " # session name
# Bar Right
set -g status-right-length 100
set -g status-right "#{now_playing} "
# Windows
set -g window-status-current-format "#[fg=magenta,bg=default]#[fg=#000000,bold,bg=magenta]#I#[fg=magenta,bg=#303042] #[fg=white,bg=#303042]#W#{?window_zoomed_flag, ,}#[fg=#303042,bg=default]"
set -g window-status-separator " "
set -g window-status-format "#[fg=#000000,bg=default]#[fg=white,bg=#000000]#I#[fg=#000000,bg=#303042] #[fg=white,bg=#303042]#W#{?window_bell_flag,,}#[fg=#303042,bg=default]"
# Change the default delay
set -sg escape-time 0
# Mouse integration
set -g mouse on
# Vi mode
set -g @shell_mode 'vi'
# ========= Keybindings =========
# Force a reload of the config file
bind r source-file ~/.tmux.conf\; display "Reloaded!"
# Swap Window to Position 1
bind-key T swap-window -t 1
# Return to last session
bind R switch-client -l
# Remove Confirm Step When Killing a Window or Pane
bind-key & kill-window
bind-key x kill-pane
# Lazygit
bind G new-window -c "#{pane_current_path}" -n " Git" lazygit
# Lazydocker
bind D new-window -c "#{pane_current_path}" -n " " lazydocker
# LF Terminal File Manager
bind O new-window -c "#{pane_current_path}" -n " " lf
# Yazi Terminal File Manager
bind W new-window -c "#{pane_current_path}" -n " " yazi
# Superfile Terminal File Manager
bind f new-window -c "#{pane_current_path}" -n "󰪶 " spf
# Run Neovim Telescope find files
bind F run-shell "nvr-tmux --remote-send '<ESC>:Telescope find_files<CR>'"
# Open cht.sh
bind-key -r i run-shell "tmux neww tmux-cht.sh"
# Tile all windows
bind = select-layout tiled
# Cycle through panes
bind ^B select-pane -t :.+
# Copy/Paste bindings
unbind [
bind Escape copy-mode
# Setup 'v' to begin selection as in Vim, 'y' or 'Enter' to yank
bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi Enter send-keys -X copy-selection
bind P run "tmux paste-buffer"
set -g @thumbs-command 'echo -n {} | pbcopy'
bind-key "T" run-shell "sesh connect \"$(
sesh list | fzf-tmux -p 55%,60% \
--no-sort --border-label ' sesh ' --prompt '⚡ ' \
--header '^a all ⋅ ^t tmux ⋅ ^g configs ⋅ ^x zoxide ⋅ ^d tmux kill ⋅ ^f find' \
--bind 'tab:down,btab:up' \
--bind 'ctrl-a:change-prompt(⚡ )+reload(sesh list)' \
--bind 'ctrl-t:change-prompt(🪟 )+reload(sesh list -t)' \
--bind 'ctrl-g:change-prompt(⚙️ )+reload(sesh list -c)' \
--bind 'ctrl-x:change-prompt(📁 )+reload(sesh list -z)' \
--bind 'ctrl-f:change-prompt(🔎 )+reload(fd -H -d 2 -t d -E .Trash . ~)' \
--bind 'ctrl-d:execute(tmux kill-session -t {})+change-prompt(⚡ )+reload(sesh list)'
)\""
# ========= Plugins =========
# prefix + I to install, prefix + U to update
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-battery'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'tmux-plugins/tmux-copycat'
set -g @plugin 'tmux-plugins/tmux-logging'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-sessionist'
set -g @plugin 'tmux-plugins/tmux-urlview'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'nhdaly/tmux-better-mouse-mode'
set -g @plugin 'carlocab/tmux-nvr'
set -g @plugin 'nhdaly/tmux-scroll-copy-mode'
set -g @plugin 'wfxr/tmux-fzf-url' # u
# set -g @plugin 'joshmedeski/t-smart-tmux-session-manager'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'joshmedeski/tmux-nerd-font-window-name'
set -g @plugin 'fcsonline/tmux-thumbs'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'