X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.tmux.conf;h=d7a47e5211fabcd50e0eea2561d13141b1d59144;hb=20515fecab4ad47200eff26038c6cef8e2cef271;hp=c283bdad6c6985917dc91c45df5939391e4d8657;hpb=cef551103d774b1880c96587264500ac29d7a3e7;p=dotfiles.git diff --git a/.tmux.conf b/.tmux.conf index c283bda..d7a47e5 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,13 +1,3 @@ -# Set the command prefix to match GNU screen (CTRL+a) -# set-option -g prefix C-a -# -# Use C-a C-a key to send prefix instead of the default -# unbind-key C-b -# bind-key C-a send-prefix -# -# C-a for last-window -# bind-key C-a last-window - # Start window numbers at 1 to match keyboard order with tmux window order set-option -g base-index 1 set-option -g pane-base-index 1 @@ -76,3 +66,17 @@ set-option -g history-limit 1000 # R to reload config without restart bind-key R source-file ~/.tmux.conf \; display "Reloaded!" + +# Set the command prefix to match GNU screen (CTRL+a) +# set-option -g prefix C-a +# +# Use C-a C-a key to send prefix instead of the default +# unbind-key C-b +# bind-key C-a send-prefix +# +# C-a for last-window +# bind-key C-a last-window + +# Use vertical and horizontal chars to split the screen +bind-key | split-window -h +bind-key - split-window -v