mirror of
https://codeberg.org/qwjyh/dotfiles.git
synced 2025-06-26 19:29:20 +09:00
23 lines
561 B
Bash
23 lines
561 B
Bash
set -g history-limit 50000
|
|
|
|
set -g mouse on
|
|
setw -g mode-keys vi
|
|
|
|
bind-key -T prefix v split-window
|
|
bind-key -T prefix h split-window -h
|
|
|
|
set-option -g default-command fish
|
|
|
|
|
|
# start window index at 1
|
|
set -g base-index 1
|
|
|
|
# start pane index at 1
|
|
setw -g pane-base-index 1
|
|
|
|
|
|
# -----------------------------------------------
|
|
# status line configs
|
|
set-option -g status-right "#[bg=colour156] #T | %y/%m/%d %H:%M:%S"
|
|
#set-window-option -g window-status-format "#[bg=green]#I:#W-" # default
|
|
set-window-option -g window-status-current-format "#[bg=colour156]#I:#W*"
|