configured tmux to start interactive shells (instead of login shells)

This commit is contained in:
quak
2024-10-04 23:26:00 +02:00
parent c66eb57a41
commit a5f8cbe9ab
3 changed files with 17 additions and 5 deletions

View File

@@ -2,5 +2,3 @@
# ~/.bash_profile # ~/.bash_profile
# #
# start starship
eval "$(starship init bash)"

View File

@@ -7,6 +7,3 @@ export PATH="$PATH:~/tools/Xilinx/Vivado/2021.1/bin"
# vivado license # vivado license
export XILINXD_LICENSE_FILE=26140@aberdeen.zhaw.ch export XILINXD_LICENSE_FILE=26140@aberdeen.zhaw.ch
# start starship
eval "$(starship init bash)"

View File

@@ -0,0 +1,17 @@
# use interactive shell instead of login shell
set-option -g default-command "/bin/bash"
# set prefix key
unbind C-b
set -g prefix C-Space
bind C-Space send-prefix
# enable mouse support
set -g mouse on
# start window and pane index at 1
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on