|
|
set -g prefix C-asetw -g mode-keys visetw -g mode-style bg=blackset-option -g default-terminal "xterm-256color"set-option -g pane-active-border-style fg=greenset-window-option -g xterm-keys on # for vimset-window-option -g mode-keys vi # vi keyset-window-option -g monitor-activity onset-window-option -g window-status-current-style fg=whitesetw -g window-status-current-style reversesetw -g automatic-renameset -g mouse onset -g history-limit 30000set -g terminal-overrides 'xterm*:smcup@:rmcup@'set-option -g status-justify rightset-option -g status-bg black # colour213 # pinkset-option -g status-fg cyanset-option -g status-interval 5set-option -g status-left-length 30set-option -g status-left '#[fg=magenta]» #[fg=blue,bold]#T#[default]'set-option -g status-right '#[fg=red,bold][[ #(git branch) branch ]] #[fg=cyan]»» #[fg=blue,bold]###S #[fg=magenta]%R %m-%d#(acpi | cut -d ',' -f 2)#[default]'set-option -g visual-activity onset-option -g set-titles onset-option -g set-titles-string '#H:#S.#I.#P #W #T'unbind junbind C-b # unbind default leader keyunbind '"' # unbind horizontal splitunbind % # unbind vertical splitbind-key r source-file ~/.tmux.confbind-key c split-window -v # split pane horizontallybind-key v split-window -h # split pane verticallybind-key Space list-panesbind-key Enter break-panebind-key Space command-prompt "joinp -t:%%" # %% = prompt for window.pane [-V|H] # vert|hor splitbind-key -n C-up prevbind-key -n C-left prevbind-key -n C-right nextbind-key -n C-down nextset-window-option -g window-status-current-style bg=redbind C-j previous-windowbind C-k next-window#bind-key C-a last-window # C-a C-a for last active windowbind A command-prompt "rename-window %%"setw -g aggressive-resize onbind-key h select-pane -Lbind-key j select-pane -Dbind-key k select-pane -Ubind-key l select-pane -Rbind-key -r C-h resize-pane -Lbind-key -r C-j resize-pane -Dbind-key -r C-k resize-pane -Ubind-key -r C-l resize-pane -Rbind o select-layout "active-only"bind M-- select-layout "even-vertical"bind M-| select-layout "even-horizontal"bind M-r rotate-window
|