-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
haskell mode out, scala mode in, tmux added
- Loading branch information
Christopher Mckay
committed
Jun 10, 2013
1 parent
0bf1896
commit 81a68f5
Showing
2 changed files
with
91 additions
and
1 deletion.
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
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,89 @@ | ||
# status bar | ||
set-option -g status-utf8 on | ||
|
||
set -g status-interval 2 | ||
set -g status-justify centre # center align window list | ||
set -g status-left-length 20 | ||
set -g status-right-length 140 | ||
set -g status-left '#[fg=green]#H #[fg=black]• #[fg=green,bright]#(uname -r | cut -c 1-6)#[default]' | ||
set -g status-right '#[fg=green,bg=black,bright]#[default] #[fg=red,dim]#(uptime | cut -f 4-5 -d " " | cut -f 1 -d ",")' | ||
|
||
## set status bar | ||
set -g status-bg "#373b41" | ||
set -g status-fg "#c5c8c6" | ||
|
||
## highlight active window | ||
setw -g window-status-current-bg "#282a2e" | ||
setw -g window-status-current-fg "#81a2be" | ||
|
||
## highlight activity in status bar | ||
setw -g window-status-activity-fg "#8abeb7" | ||
setw -g window-status-activity-bg "#1d1f21" | ||
|
||
## pane border and colors | ||
set -g pane-active-border-bg default | ||
set -g pane-active-border-fg "#373b41" | ||
set -g pane-border-bg default | ||
set -g pane-border-fg "#373b41" | ||
|
||
set -g clock-mode-colour "#81a2be" | ||
set -g clock-mode-style 24 | ||
|
||
set -g message-bg "#8abeb7" | ||
set -g message-fg "#000000" | ||
|
||
set -g message-command-bg "#8abeb7" | ||
set -g message-command-fg "#000000" | ||
|
||
set -g mode-bg "#8abeb7" | ||
set -g mode-fg "#000000" | ||
|
||
# C-b is not acceptable -- Vim uses it | ||
set-option -g prefix C-z | ||
bind-key C-z last-window | ||
|
||
# Start numbering at 1 | ||
set -g base-index 1 | ||
|
||
# Allows for faster key repetition | ||
set -s escape-time 0 | ||
|
||
# Rather than constraining window size to the maximum size of any client | ||
# connected to the *session*, constrain window size to the maximum size of any | ||
# client connected to *that window*. Much more reasonable. | ||
setw -g aggressive-resize on | ||
|
||
# Allows us to use C-a a <command> to send commands to a TMUX session inside | ||
# another TMUX session | ||
bind-key z send-prefix | ||
|
||
# Activity monitoring | ||
setw -g monitor-activity on | ||
set -g visual-activity on | ||
|
||
# Vi splitting keybindings | ||
bind v split-window -h | ||
bind s split-window -v | ||
|
||
# Vi copypaste mode | ||
set-window-option -g mode-keys vi | ||
bind-key -t vi-copy 'v' begin-selection | ||
bind-key -t vi-copy 'y' copy-selection | ||
|
||
# hjkl pane traversal | ||
bind h select-pane -L | ||
bind j select-pane -D | ||
bind k select-pane -U | ||
bind l select-pane -R | ||
|
||
# reload config | ||
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..." | ||
|
||
# auto window rename | ||
set-window-option -g automatic-rename | ||
|
||
# rm mouse mode fail | ||
set -g mode-mouse off | ||
|
||
# color | ||
set -g default-terminal "screen-256color" |