From 93e07194e1ce453525b7174fe123bd65029c6a60 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Sat, 2 Nov 2019 09:47:22 +0200 Subject: [PATCH] Removed tmux autoinstall I'm gonna put it in a deploy script Signed-off-by: Marko Korhonen --- home/.tmux.conf | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/home/.tmux.conf b/home/.tmux.conf index 5b8b02e..83c141b 100644 --- a/home/.tmux.conf +++ b/home/.tmux.conf @@ -1,7 +1,3 @@ -# autoinstall tpm -if "test ! -d ~/.tmux/plugins/tpm" \ - "run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'" - # change prefix to ctrl+a unbind C-b set -g prefix C-a @@ -11,8 +7,8 @@ set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'egel/tmux-gruvbox' +set -g default-terminal "tmux" # use 'tmux' instead of 'screen-*' to enable italics support per tmux FAQ +set-option -ga terminal-overrides ",*256col*:Tc" + # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run -b '~/.tmux/plugins/tpm/tpm' - -set -g default-terminal "tmux" # use 'tmux' instead of 'screen-*' to enable italics support per tmux FAQ -set-option -ga terminal-overrides ",*256col*:Tc"