Added tmux and alacritty

This commit is contained in:
2023-08-16 16:25:19 +02:00
parent 6ea0e27293
commit ee77fbce8f
11 changed files with 1807 additions and 4 deletions

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

@ -0,0 +1,23 @@
# global options
set -sg terminal-overrides ",*:RGB"
set -g mouse on
set -g prefix C-a
# unbind all
unbind-key -a
# prefix using Ctrl-a
bind C-a send-prefix
# detach tmux using q
bind q detach
# split panes using s and d
bind d split-window -h
bind s split-window -v
# switch panes using Alt-arrow without prefix
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D