Initial commit

This commit is contained in:
agryphus 2023-08-02 00:45:22 -04:00
commit 85f5be4658
18 changed files with 663 additions and 0 deletions

22
.config/tmux/tmux.conf Normal file
View file

@ -0,0 +1,22 @@
# Stop tmux from override terminal colors
set-option -ga terminal-overrides ",xterm-256color:Tc"
# Change tmux prefix
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
set -g status-style 'bg=#333333 fg=#5eacd3'
# Vim-like visual mode and yanking
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