From 3b703e7a6ce6f93162937ef64ae19e465c98bbbe Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Mon, 7 Apr 2025 10:59:01 -0500 Subject: [PATCH] tmux: disable status bar --- kitty/.config/kitty/kitty.conf | 3 +++ tmux/.tmux.conf | 18 +++++++++--------- zsh/.zshrc | 9 +++++++++ 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/kitty/.config/kitty/kitty.conf b/kitty/.config/kitty/kitty.conf index d0175c2..283a858 100644 --- a/kitty/.config/kitty/kitty.conf +++ b/kitty/.config/kitty/kitty.conf @@ -1,3 +1,6 @@ +foreground #000000 +background #ffffff + # Font configuration font_family Hasklug Nerd Font Mono # font_family IntoneMono Nerd Font Mono diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 5e38c92..2a96918 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -54,6 +54,12 @@ set-option -g display-panes-time 3000 set -g base-index 1 set-window-option -g pane-base-index 1 +# List panes +bind-key p list-panes + +# List windows +bind-key w list-windows + # Automatically set window title set-window-option -g automatic-rename on set-option -g set-titles on @@ -65,7 +71,7 @@ set-option -g repeat-time 0 set -sg escape-time 0 # Theme -set-window-option -g window-status-current-style bold,bg=blue,fg=colour234 +set-window-option -g window-status-current-style bold,bg=white,fg=red set-window-option -g window-status-style fg=colour35 set -g window-status-activity-style bold,bg=colour234,fg=white set-option -g message-style bg=colour237,fg=colour231 @@ -84,11 +90,5 @@ setw -g monitor-bell off # Disable visual text box when activity occurs set -g visual-activity off -# Status Bar -set -g status-justify centre -set -g status-bg black -set -g status-fg colour35 -set -g status-interval 60 -set -g status-left-length 50 -set -g status-left "#[bg=colour35]💻#[fg=colour234,bold] #H#[bg=colour34]#[bg=colour35,nobold]#[fg=colour234] [#S] $tmux_target_lower" -set -g status-right '#[bg=colour35] 🕔 #[fg=colour234,bold]%H:%M ' +# Status bar +set -g status off diff --git a/zsh/.zshrc b/zsh/.zshrc index e41e4a7..87c86fe 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -12,7 +12,16 @@ alias gs='git status' PATH="$PATH:$HOME/go/bin" PATH="$PATH:$HOME/.cabal/bin" PATH="$PATH:$HOME/Library/Python/3.9/bin" +PATH="$PATH:$HOME/.cache/rebar3/bin" export PATH [ -f "$HOME/.ghcup/env" ] && . "$HOME/.ghcup/env" [ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env" + +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion + +export ANDROID_HOME="$HOME"/Library/Android/sdk +export PATH=$ANDROID_HOME/platform-tools:$PATH +export PATH=$ANDROID_HOME/tools:$PATH -- 2.43.0