Skip to content

Instantly share code, notes, and snippets.

@marcioAlmada
Created July 29, 2014 05:59
Show Gist options
  • Save marcioAlmada/c80a71384d0c64840649 to your computer and use it in GitHub Desktop.
Save marcioAlmada/c80a71384d0c64840649 to your computer and use it in GitHub Desktop.
MyTmux
#unbind C-b
#set -g prefix C-b
# allow mouse
# set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# set -g mode-mouse on # alternatve way
set -g mode-mouse off
# better window split behavior
unbind '%'
bind \ split-window -h
bind v split-window -h
unbind '"'
bind - split-window -v
bind h split-window -v
# better window navigation using alt+arrow
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
set -g monitor-activity on
set -g visual-activity on
set -g status off
#### COLOUR (Solarized 256)
# pane border
set-option -g pane-border-fg colour240 #base01
set-option -g pane-active-border-fg colour245 #grey
# message text
set-option -g message-bg colour235 #base02
set-option -g message-fg colour166 #orange
# clock
set-window-option -g clock-mode-colour colour240 #base01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment