configured tmux to start interactive shells (instead of login shells)
This commit is contained in:
@@ -2,5 +2,3 @@
|
|||||||
# ~/.bash_profile
|
# ~/.bash_profile
|
||||||
#
|
#
|
||||||
|
|
||||||
# start starship
|
|
||||||
eval "$(starship init bash)"
|
|
||||||
|
|||||||
@@ -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)"
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user