]> git.frustrated-labs.net Git - dotfiles.git/commitdiff
tmux: disable status bar
authorAlexander Goussas <[email protected]>
Mon, 7 Apr 2025 15:59:01 +0000 (10:59 -0500)
committerAlexander Goussas <[email protected]>
Mon, 7 Apr 2025 15:59:01 +0000 (10:59 -0500)
kitty/.config/kitty/kitty.conf
tmux/.tmux.conf
zsh/.zshrc

index d0175c2c49819e57fe80e17103938a568bf49da5..283a858679c536a046de5b64b2e2bf54a009ed10 100644 (file)
@@ -1,3 +1,6 @@
+foreground #000000
+background #ffffff
+
 # Font configuration
 font_family       Hasklug Nerd Font Mono
 # font_family       IntoneMono Nerd Font Mono
index 5e38c92604e36bd1343a3043c2b5fd44bf624c35..2a96918f3915adbcd7dd3006e790726deb19e023 100644 (file)
@@ -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
index e41e4a77b7a8dca3da964f2231d17f0360296aa1..87c86fec801ffe7cea88d91c4f12574b5f19c3dc 100644 (file)
@@ -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