54 lines
1.6 KiB
Bash
54 lines
1.6 KiB
Bash
# setw -g utf8 on
|
|
# set -g status-utf8 on
|
|
|
|
set-option -g default-shell /usr/bin/fish
|
|
set-option -g status-keys vi
|
|
set-option -g mode-keys vi
|
|
set-option -g lock-command vlock
|
|
set-option -g escape-time 0
|
|
|
|
set -g update-environment "DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY DBUS_SESSION_BUS_ADDRESS"
|
|
#set-window-option -g mode-mouse on
|
|
|
|
#### COLOUR
|
|
|
|
set -g default-terminal screen-256color
|
|
set -g aggressive-resize on
|
|
|
|
# default statusbar colors
|
|
set-option -g status-bg colour14
|
|
set-option -g status-fg colour0
|
|
#set-option -g status-attr default
|
|
|
|
# default window title colors
|
|
#set-window-option -g window-status-fg colour244
|
|
#set-window-option -g window-status-bg default
|
|
#set-window-option -g window-status-attr dim
|
|
|
|
# active window title colors
|
|
#set-window-option -g window-status-current-fg colour166 #orange
|
|
#set-window-option -g window-status-current-bg default
|
|
#set-window-option -g window-status-current-attr bright
|
|
|
|
# pane border
|
|
#set-option -g pane-border-fg colour235 #base02
|
|
#set-option -g pane-active-border-fg colour240 #base01
|
|
|
|
# message text
|
|
set-option -g message-bg colour13
|
|
#set-option -g message-fg colour166 #orange
|
|
|
|
# pane number display
|
|
#set-option -g display-panes-active-colour colour33 #blue
|
|
#set-option -g display-panes-colour colour166 #orange
|
|
|
|
# clock
|
|
#set-window-option -g clock-mode-colour colour64 #green
|
|
|
|
bind-key P new-window -n ipy ipython3 -i -c "cd /tmp"
|
|
bind-key u new-window -n units units
|
|
|
|
bind-key -n M-h select-pane -L
|
|
bind-key -n M-j select-pane -D
|
|
bind-key -n M-k select-pane -U
|
|
bind-key -n M-l select-pane -R
|