Upgrade Vim Plugged & add tmux

This commit is contained in:
Andrew Miner
2018-03-19 21:06:02 -06:00
parent 807a93a701
commit cdfd5112e1
4 changed files with 103 additions and 21 deletions
+24
View File
@@ -0,0 +1,24 @@
# Basic Setup ##########################################################################################################
set -g default-terminal "screen-256color"
setw -g mode-keys vi
# Keybindings ##########################################################################################################
# Remap prefix to Ctrl-A
set -g prefix C-f
unbind C-b
bind C-f send-prefix
# Reload config file with prefix-r
unbind r
bind r source-file ~/.tmux.conf
# Add keybindings for pane movement
bind-key -r -T prefix k select-pane -U
bind-key -r -T prefix j select-pane -D
bind-key -r -T prefix h select-pane -L
bind-key -r -T prefix l select-pane -R
# Bindings for history management
bind-key C-l send-keys C-l \; clear-history