Add copy_dotfiles script and other things

This commit is contained in:
2025-01-11 22:30:21 -06:00
parent e44c29ccb9
commit 1340729f50
8 changed files with 99 additions and 2 deletions

27
.config/tmux/tmux.conf Normal file
View File

@ -0,0 +1,27 @@
set -g default-terminal "tmux-255color"
set -s escape-time 0
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
set -g status-style 'bg=#333333 fg=#5eacd3'
set -g base-index 1
set-window-option -g mode-keys vi
bind -T copy-mode-vi v send-keys -X begin-selection
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
# vim-like pane switching
bind -r ^ last-window
bind -r k select-pane -U
bind -r j select-pane -D
bind -r h select-pane -L
bind -r l select-pane -R
bind -r D neww -c "#{pane_current_path}" "[[ -e TODO.md ]] && nvim TODO.md || nvim ~/personal/dev/todo.md"
bind r source-file "~/.config/tmux/tmux.conf" \; display-message "tmux.conf reloaded"
# forget the find window. That is for chumps
bind-key -r f run-shell "tmux neww ~/.local/bin/tmux-sessionizer"