diff --git a/ghostty/config b/ghostty/config index e42882a..22301e7 100644 --- a/ghostty/config +++ b/ghostty/config @@ -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 diff --git a/tmux/tmux.conf b/tmux/tmux.conf index c6c61de..304b2e3 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -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'