1
0

Importing stuff from the private repo.

This commit is contained in:
2020-10-28 08:34:01 +01:00
parent 2585416327
commit a0e67a0bce
5 changed files with 113 additions and 0 deletions

22
tmux.conf Normal file
View File

@@ -0,0 +1,22 @@
# Setting prefix to C-a
set -g prefix C-a
bind C-a send-prefix
bind-key a send-prefix
unbind-key C-o
# Setting escape delay to 0 (for vim)
set -s escape-time 0
# Setting window indexing to start from 1
set -g base-index 1
setw -g pane-base-index 1
set -g default-terminal "screen-256color"
setw -g automatic-rename on
set -g set-titles on
bind-key - split-window -v
bind-key \\ split-window -h
bind-key o command-prompt -p index "select-pane -t '%%'"