From 7a62525175c0a67b457da7d0af0582fa2e2dd43e Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Mon, 10 Apr 2023 09:44:42 +0200 Subject: [PATCH] setting the default terminal --- tmux/tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 7675d7d..fe0c73a 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -32,6 +32,9 @@ unbind % # Disable completely the mouse set -g mouse off +# Set the default terminal +set -s default-terminal 'tmux-256color' + # open/split window with current path bind '"' split-window -c "#{pane_current_path}" bind % split-window -h -c "#{pane_current_path}"