Migrate from .stow-rename to --dotfiles

This commit is contained in:
Danielle McLean 2023-10-23 15:32:19 +11:00
parent deb2a2a172
commit f577a78d3e
Signed by: 00dani
GPG key ID: 52C059C3B22A753E
3 changed files with 0 additions and 1 deletions

39
dot-config/tmux/tmux.conf Normal file
View file

@ -0,0 +1,39 @@
set -s escape-time 0
set -g focus-events on
set -g set-titles on
setw -g aggressive-resize on
setw -g automatic-rename on
set -g default-command "$SHELL"
set -g default-terminal "screen-256color"
set -g mouse on
setw -g mode-keys vi
set -g status-keys vi
unbind C-b
set -g prefix C-a
bind R source-file $XDG_CONFIG_HOME/tmux/tmux.conf
bind C-a last-window
bind a send-prefix
# This stuff was yanked from http://www.hamvocke.com/blog/a-guide-to-customizing-your-tmux-conf/#changing-the-look-of-tmux
set -g status-interval 2
set -g status-left ''
set -g status-left-length 20
set -g status-right '#[fg=colour233,bg=colour241,bold] %d/%m #[fg=colour233,bg=colour245,bold] %H:%M:%S '
set -g status-right-length 50
set -g status-justify left
set -g status-bg default
set -g status-fg colour12
setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F '
setw -g window-status-bg default
setw -g window-status-fg colour138
setw -g window-status-current-format ' #I#[fg=colour250]:#[fg=colour255]#W#[fg=colour50]#F '
setw -g window-status-current-attr bold
setw -g window-status-current-bg colour238
setw -g window-status-current-fg colour81

View file

@ -0,0 +1,3 @@
#! zsh
alias tmux='tmux -f $XDG_CONFIG_HOME/tmux/tmux.conf'
export TMUX_TMPDIR=$XDG_RUNTIME_DIR