chore: add kitty and tmux to dotfiles

This commit is contained in:
2021-02-15 21:13:08 -06:00
parent 0053ea7272
commit dc111c4a44
6 changed files with 1132 additions and 11 deletions

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

@@ -0,0 +1,19 @@
# Rebind the Prefix
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# Sane Split Commands
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# Reload tmux config
bind r source-file ~/.config/tmux/tmux.conf
# Enable Mouse control
set -g mouse on
# Set Tmux TERM
set -g default-terminal 'tmux-256color'