From 39520f1c4ef79cf1381e1f134a83d78053faae04 Mon Sep 17 00:00:00 2001 From: steveokard Date: Tue, 23 Apr 2019 15:11:41 -0400 Subject: [PATCH] fixed home and end keys --- tmux/.tmux.conf | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 7ec69cb..8d12aa3 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -5,14 +5,15 @@ bind C-a send-prefix set -sg escape-time 0 # Ensure terminal starts with its own colour scheme (helps Vim/Neovim themes to not break) -set-option -g default-terminal "xterm-256color" -set -g default-terminal "xterm-256color" +set-option -g default-terminal "screen-256color" +set -g default-terminal "screen-256color" #Mouse/Scrollback Tweaks set -g history-limit 100000 #setw -g mode-keys vi set-option -g mouse on set -g xterm-keys on +set-window-option -g xterm-keys on set-option -g pane-active-border-fg yellow #New Keybindings @@ -51,3 +52,7 @@ set -g set-titles on set -g display-panes-time 800 set -g display-time 1000 set -g status-interval 10 + +# Ensure terminal starts with its own colour scheme (helps Vim/Neovim themes to not break) +set-option -g default-terminal "screen-256color" +set -g default-terminal "screen-256color"