From a4eaacbf7517254cbc5a27899a8fe99a0a383352 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Mon, 8 Jan 2018 14:11:08 -0500 Subject: [PATCH] Don't run bash as a login shell to prevent double-sourcing --- tmux.normal.conf | 3 +++ tmux.powerline.conf | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tmux.normal.conf b/tmux.normal.conf index 8ed84db..d61bdef 100644 --- a/tmux.normal.conf +++ b/tmux.normal.conf @@ -14,6 +14,9 @@ # PRECONFIG # +# set the default command to bash as a non-login shell +set -g default-command "exec bash" +# # unbind the command prefix and set the new one to ctrl-Space unbind C-b set-option -g prefix C-Space diff --git a/tmux.powerline.conf b/tmux.powerline.conf index cf0f95d..52d9022 100644 --- a/tmux.powerline.conf +++ b/tmux.powerline.conf @@ -14,6 +14,9 @@ # PRECONFIG # +# set the default command to bash as a non-login shell +set -g default-command "exec bash" +# # unbind the command prefix and set the new one to ctrl-Space unbind C-b set-option -g prefix C-Space