This commit is contained in:
RingOfStorms (Joshua Bell) 2025-01-16 02:38:19 -06:00
parent 8163dd7c82
commit fd03ba2884
4 changed files with 12 additions and 9 deletions

View file

@ -12,9 +12,11 @@
placement_strategy = "center";
# Remove window borders
# window_decorations = "none";
hide_window_decorations = "yes";
dynamic_title = false;
hide_window_decorations = "titlebar-only";
tab_title_template = "none";
active_tab_title_template = "none";
draw_minimal_borders = "yes";
window_border_width = "0.1pt";
# Colors (Catppuccin Coal)
foreground = "#e0e0e0";

View file

@ -55,10 +55,11 @@ bind C-d detach
# ==========
# My options
set-option -g terminal-overrides ',xterm-256color:RGB'
set-option -sa terminal-features ',alacritty:LRGB'
set-option -sa terminal-features ',kitty:LRGB'
set -g detach-on-destroy off
set -g renumber-windows on
set -g status-position top
set -sg escape-time 0
set -g xterm-keys on
set-option -g focus-events on

View file

@ -71,6 +71,6 @@
home.shellAliases = {
t = "tmux";
tat = "tmux ls 2>/dev/null && tmux attach-session -t \"$(tmux ls | head -n1 | cut -d: -f1)\" || tmux new-session";
tat = "tmux attach-session";
};
}