Add updates for tmux and ghostty

This commit is contained in:
Ben Kreeger 2025-06-20 14:00:44 -05:00
parent bd5aee9dae
commit 32b20a15c5
Signed by: kreeger
GPG Key ID: 1F33DAF2F49E4046
2 changed files with 13 additions and 6 deletions

View File

@ -12,8 +12,8 @@ background-blur = true
background-opacity = 0.85
theme = dark:catppuccin-mocha.conf, light:catppuccin-latte.conf
window-padding-color = extend
window-padding-x = 10,0
window-padding-y = 10,5
window-padding-x = 5,0
window-padding-y = 5
# Functionality
scrollback-limit = 10000
@ -24,4 +24,4 @@ shell-integration-features = no-cursor
# macOS-specific settings
alpha-blending = linear
macos-icon = xray
macos-titlebar-style = tabs
macos-titlebar-style = transparent

View File

@ -1,5 +1,5 @@
# Change leader to Ctrl-a
set -g prefix ^A
set -g prefix ^a
# Enable mouse support
set -g mouse on
@ -12,7 +12,7 @@ set -g base-index 1
set -g renumber-windows on
# Move status bar to the top
set -g status-position top
set -g status-position bottom
# Catppuccin options
set -g @catppuccin_window_status_style 'rounded'
@ -21,15 +21,22 @@ set -g @catppuccin_window_status_style 'rounded'
set -g @plugin 'catppuccin/tmux'
run ~/.config/tmux/plugins/catppuccin/tmux/catppuccin.tmux
# Beautify the status line
# Beautify the status line??
set -g status-left-length 100
set -g status-left "#{E:@catppuccin_status_session}"
set -g status-justify centre
set -g status-right-length 100
set -g status-right "#{E:@catppuccin_status_application}"
set -agF status-right "#{E:@catppuccin_status_cpu}"
set -agF status-right "#{@catppuccin_status_gitmux}"
# Keybinds
bind-key r source-file ~/.config/tmux/tmux.conf;
bind-key t new-window;
bind-key v split-window -h;
bind-key h split-window -v;
# Then boot up TPM
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-yank'