mirror of
1
0
Fork 0

Delete old devpod tmux conf file

This commit is contained in:
Tiffany Lin 2021-03-03 19:36:30 +00:00
parent 1dc3aecb2e
commit c65cfe13f9
1 changed files with 0 additions and 46 deletions

View File

@ -1,46 +0,0 @@
# Kept as a note, TODO update devpod tmux version
#
# -- user customizations -------------------------------------------------------
# this is the place to override or undo settings
# Open tmux with zsh
set -g default-shell /bin/zsh
set -g default-command /bin/zsh
# increase history size
set -g history-limit 10000
# start with mouse mode disabled
set -g mouse off
# force Vi mode
# really you should export VISUAL or EDITOR environment variable, see manual
#set -g status-keys vi
#set -g mode-keys vi
# replace C-b by C-a instead of using both prefixes
# set -gu prefix2
# unbind C-a
# unbind C-b
# set -g prefix C-Space
# bind C-Space send-prefix
# move status line to top
set -g status-position top
# split panes using | and -
# bind \\ split-window -h # for tmux 3.x and above
bind \ split-window -h
bind - split-window -v
unbind '"'
unbind %
# switch panes using Alt-arrow without prefix
bind -n M-h select-pane -L
bind -n M-l select-pane -R
bind -n M-k select-pane -U
bind -n M-j select-pane -D
# set <prefix> space to toggle between pane layouts
bind '"' next-layout