-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1ce868
commit f586eb0
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#if-shell 'env "$POWERLINE_CONFIG_COMMAND" tmux setup' '' 'run-shell "powerline-config tmux setup"' | ||
# vim: ft=tmux | ||
|
||
# --- colors (solarized dark) | ||
# default statusbar colors | ||
set -g status-bg black | ||
set -g status-fg yellow | ||
set -g status-attr default | ||
|
||
# default window title colors | ||
setw -g window-status-fg brightblue | ||
setw -g window-status-bg default | ||
|
||
# active window title colors | ||
setw -g window-status-current-fg yellow | ||
setw -g window-status-current-bg default | ||
setw -g window-status-current-attr dim | ||
|
||
# pane border | ||
set -g pane-border-fg black | ||
set -g pane-border-bg default | ||
set -g pane-active-border-fg yellow | ||
set -g pane-active-border-bg default | ||
|
||
# command line/message text | ||
set -g message-bg black | ||
set -g message-fg yellow | ||
|
||
# pane number display | ||
set -g display-panes-active-colour yellow | ||
set -g display-panes-colour brightblue | ||
|
||
# clock | ||
setw -g clock-mode-colour yellow | ||
# --- end colors | ||
|
||
set -g default-terminal "screen-256color" | ||
|
||
unbind C-b | ||
set -g prefix C-a | ||
bind C-a send-prefix | ||
|
||
set -g mouse-select-pane on | ||
|
||
#bind -n C-Left select-pane -L | ||
#bind -n C-Right select-pane -R | ||
#bind -n C-Up select-pane -U | ||
#bind -n C-Down select-pane -D | ||
|
||
unbind C-Left | ||
unbind C-Right | ||
|
||
set-window-option -g xterm-keys on | ||
|
||
bind-key u capture-pane \; save-buffer /tmp/active_tmux_buffer \; new-window -n urlview '$SHELL -c "urlview < /tmp/active_tmux_buffer && rm /tmp/active_tmux_buffer"' |