summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <curtis.mcenroe@adgear.com>2016-09-29 16:05:43 -0400
committerJune McEnroe <curtis.mcenroe@adgear.com>2016-09-29 16:05:43 -0400
commita0a999b0256111e9b9e20caa900a1789dc05e1c2 (patch)
tree0f3d7c243d76bafb14cb7d3e1cffb682b5290343
parentReconfigure tmux (diff)
downloadsrc-a0a999b0256111e9b9e20caa900a1789dc05e1c2.tar.gz
src-a0a999b0256111e9b9e20caa900a1789dc05e1c2.zip
Set TERM in tmux
-rw-r--r--.tmux.conf4
1 files changed, 3 insertions, 1 deletions
diff --git a/.tmux.conf b/.tmux.conf
index b3ab7fdd..07d5ac30 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -3,6 +3,8 @@ set -g prefix C-e
 bind C-e send-prefix
 set -g escape-time 0
 
+set -g default-terminal 'screen-256color'
+
 set -g base-index 1
 set -g renumber-windows on
 
@@ -14,7 +16,7 @@ set -g window-status-current-format '#[reverse] #{pane_title} '
 set -g window-status-separator '|'
 
 bind t new-window -c '#{pane_current_path}'
-bind C-o last-window
+bind o last-window
 
 bind s split-window -v -c '#{pane_current_path}'
 bind v split-window -h -c '#{pane_current_path}'
=157be8a8d72f17b4c56fc64c1659ac7b1cac22df&follow=1'>Remove unused mbs.len field from struct EditJune McEnroe 2022-02-19Remove unneeded includes in ui.cJune McEnroe 2022-02-19Reimplement tab completeJune McEnroe 2022-02-19Handle errors from editFn, etc.June McEnroe 2022-02-19Reimplement text macrosJune McEnroe 2022-02-19Factor out input handling to input.cJune McEnroe 2022-02-19Factor out window management to window.cJune McEnroe 2022-02-19Enable -Wmissing-prototypesJune McEnroe 2022-02-19Fix edit.[ch] license notice additional permissionsJune McEnroe 2022-02-19Run line editing testsJune McEnroe 2022-02-18Implement new line editing "library"June McEnroe 2022-02-18Simplify cursor positioning in inputJune McEnroe 2022-02-18Fix M-f orderingJune McEnroe 2022-02-12Move sandman build to scripts/MakefileJune McEnroe 2022-02-12Use compat_readpassphrase.c on LinuxJune McEnroe 2022-02-12Copy RPP defines from oconfigureJune McEnroe