Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- # tmux.conf
-
- if "test -f $HOME/.tmux.conf.local" "source-file $HOME/.tmux.conf.local" \
- "display-message \"$HOME/.tmux.conf.local not found\""
-
- unbind C-b
- set -g prefix C-z
- bind C-z send-prefix
- bind c command-prompt "new-window '%%'"
- bind C-r source-file ~/.tmux.conf \; display-message "Reloaded config !!"
-
- set -g base-index 1
- set -g pane-base-index 1
- set -g renumber-windows on
- setw -g mode-keys vi
- setw -g mode-mouse off
- #set -g default-command /bin/bash
-
- #set -g default-path "$HOME"
-
- # try to set title of terminal tmux is running on
- # set -g set-titles off
- set -g display-panes-time 5000
- set -g window-status-current-format "#I|#W:#T#F"
- set -g window-status-format "#I|#W:#T#F"
- # set window name automatically from command currently running
- set -g automatic-rename on
-
- # disable updating status-left and status-right
- set status-interval 0
- set status-keys emacs
-
- set -g message-bg white
- set -g message-fg black
- setw -g window-status-current-bg white
- setw -g window-status-current-fg black
- setw -g window-status-attr bold
|