From c65cfe13f96bfbf3a4f60bc89390a29991275b89 Mon Sep 17 00:00:00 2001 From: Tiffany Lin Date: Wed, 3 Mar 2021 19:36:30 +0000 Subject: [PATCH] Delete old devpod tmux conf file --- tmux.conf.devpod.old | 46 -------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 tmux.conf.devpod.old diff --git a/tmux.conf.devpod.old b/tmux.conf.devpod.old deleted file mode 100644 index c9e4bcb..0000000 --- a/tmux.conf.devpod.old +++ /dev/null @@ -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 space to toggle between pane layouts -bind '"' next-layout -