Added all dotfiles

This commit is contained in:
jon
2017-07-09 19:22:08 -05:00
parent 0c2703a16f
commit f62d14fa8c
16 changed files with 215 additions and 0 deletions

15
tmux/.tmux.conf Normal file
View File

@@ -0,0 +1,15 @@
#change C-b to Ca
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# enable mouse control (clickable windows, panes, resizable panes)
# as of tmux 2.1 you can just do this ...
set -g mouse on
# stop tmux from renaming the window every time you run a command
set-option -g allow-rename off
set-option -g pane-active-border-fg blue