Update tmux and karabiner

This commit is contained in:
js0ny 2024-10-04 11:00:46 +01:00
parent 4cba004d09
commit f43906adb6
5 changed files with 209 additions and 0 deletions

34
.tmux.conf Normal file
View file

@ -0,0 +1,34 @@
# Prefix
# -----------------
set-option -g prefix C-x
unbind C-b
bind C-x send-prefix
# Index
# -----------------
set -g base-index 1
set -g pane-base-index 1
# History
# -----------------
set -g history-limit 4096
# Reload Config
# -----------------
bind r source-file ~/.tmux.conf \; display "Reloaded Config"
# Vi Mode
# -----------------
set -g status-keys vi
set-window-option -g mode-keys vi
# Windows Management
# -----------------
bind | split-window -h
unbind '"'
bind - split-window -v
unbind %
bind h select-pane -L