dotfiles/home/private_dot_config/tmux/tmux.conf

81 lines
2 KiB
Text
Raw Normal View History

2021-12-08 09:38:24 -06:00
set -g status-keys vi
setw -g mode-keys vi
2023-01-07 10:42:54 -06:00
set -g mouse on
2021-12-08 09:38:24 -06:00
2023-01-12 13:45:56 -06:00
# keybindings
2023-05-03 14:22:51 -05:00
set -g prefix C-Space
bind-key C-Space send-prefix
2023-01-12 13:45:56 -06:00
unbind C-b
2023-01-13 22:48:35 -06:00
2023-05-03 14:22:51 -05:00
# smart pane switching with awareness of vim splits
2021-12-08 09:38:24 -06:00
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
# split panes using | and -
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
unbind '"'
unbind %
2023-05-10 01:26:04 -05:00
bind s display-popup \
-h 60% -w 60% \
-B -e FZF_DEFAULT_OPTS="${FZF_DEFAULT_OPTS} --height=100%" \
-E "tsm"
2023-05-10 01:00:32 -05:00
2021-12-08 09:38:24 -06:00
# Set default term to xterm
set -g default-terminal "xterm-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
2022-12-10 12:18:01 -06:00
2022-12-19 11:50:16 -06:00
# --------catppuccin mocha
2022-12-10 12:18:01 -06:00
# --> Catppuccin (Mocha)
thm_bg="#1e1e2e"
thm_fg="#cdd6f4"
thm_cyan="#89dceb"
thm_black="#181825"
thm_gray="#313244"
thm_magenta="#cba6f7"
thm_pink="#f5c2e7"
thm_red="#f38ba8"
thm_green="#a6e3a1"
thm_yellow="#f9e2af"
thm_blue="#89b4fa"
thm_orange="#fab387"
thm_black4="#585b70"
2023-01-13 22:48:35 -06:00
set -g status on
set -g status-style "fg=magenta,bg=default"
set -g status-interval 2
2023-05-17 12:20:36 -05:00
set -g status-justify "absolute-centre"
2023-05-28 16:22:30 -05:00
set -g status-left "#[fg=${thm_magenta},bold]λ#[fg=${thm_yellow},bold] #S"
2023-01-13 22:48:35 -06:00
2023-05-28 16:22:30 -05:00
set -g status-left-length 60
2023-01-13 22:48:35 -06:00
# set -g status-right '[#S]'
set -g status-right "%b %d %Y %l:%M %p"
set -g status-right-length 60
set -g window-status-last-style "fg=${thm_yellow}"
2023-05-10 01:00:32 -05:00
set -g pane-border-lines heavy
2023-01-13 22:48:35 -06:00
2023-05-28 16:22:30 -05:00
active_marker="#[fg=${thm_cyan},bold]"
set -g window-status-current-format "#[bg=${thm_bg}]${active_marker} #[fg=${thm_red},bold]#W"
2022-12-10 12:18:01 -06:00
2022-12-19 11:50:16 -06:00
# messages
2023-01-13 22:48:35 -06:00
set -g message-style "fg=${thm_orange},bg=${thm_bg},align=centre"
set -g message-command-style "fg=${thm_cyan},bg=${thm_bg},align=centre"
2022-12-19 11:50:16 -06:00
# panes
2022-12-10 12:18:01 -06:00
set -g pane-border-style "fg=${thm_gray}"
2023-01-12 13:45:56 -06:00
set -g pane-active-border-style "fg=${thm_pink}"
2022-12-19 11:50:16 -06:00
# windows
2022-12-10 12:18:01 -06:00
setw -g window-status-activity-style "fg=${thm_fg},bg=${thm_bg},none"
2023-01-12 13:45:56 -06:00
setw -g window-status-separator " | "
2022-12-10 12:18:01 -06:00
setw -g window-status-style "fg=${thm_fg},bg=${thm_bg},none"
2022-12-19 11:50:16 -06:00
2022-12-10 12:18:01 -06:00
setw -g clock-mode-colour "${thm_blue}"
setw -g mode-style "fg=${thm_pink} bg=${thm_black4} bold"