Skip to content

Commit

Permalink
Changed theme to a green-ish one
Browse files Browse the repository at this point in the history
  • Loading branch information
David Lago committed Mar 3, 2015
1 parent 5887a76 commit 6393a1c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ bind | split-window -h
bind - split-window -v

# Switch between panes with Vim-style "arrows"
bind h select-pane -L
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
Expand All @@ -52,24 +52,24 @@ bind -r L resize-pane -R 2
set -g default-terminal "screen-256color"

# Color status bar
set -g status-bg white
set -g status-bg colour150
set -g status-fg colour235
set -g status-attr dim

# Highlight current window
setw -g window-status-current-fg black
setw -g window-status-current-bg colour210
setw -g window-status-current-fg colour235
setw -g window-status-current-bg colour228
setw -g window-status-current-attr bright

# Pane dividers
set -g pane-border-fg colour210
set -g pane-border-fg colour243
#set -g pane-border-bg colour235
set -g pane-active-border-fg colour166
set -g pane-active-border-fg colour150
#set -g pane-active-border-bg colour235

# Command line
set -g message-fg black
set -g message-bg colour210
set -g message-fg colour235
set -g message-bg colour228
set -g message-attr dim

####################################################
Expand All @@ -82,10 +82,10 @@ set -g status-interval 30

# Show session, window, pane in left status bar
set -g status-left-length 40
set -g status-left '#[fg=red]#S:#I.#P#[default]'
set -g status-left '#[fg=colour235]#S:#I.#P#[default]'

# Customized right status bar
set -g status-right "#[fg=red]#h | %d %b %l:%M %p"
set -g status-right "#[fg=colour235]#h | %d %b %l:%M %p"

# Highlight window when it has new activity
setw -g monitor-activity on
Expand Down
8 changes: 4 additions & 4 deletions davidlago.zsh-theme
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
#
# ln -sf ~/dotfiles/davidlago.zsh-theme ~/.oh-my-zsh/themes/

PROMPT='$FG[166]%c $FG[166]$(git_prompt_info)%{$reset_color%}'
PROMPT='$FG[150]%c $FG[150]$(git_prompt_info)%{$reset_color%}'

ZSH_THEME_GIT_PROMPT_PREFIX="[$FG[210]"
ZSH_THEME_GIT_PROMPT_PREFIX="[$FG[228]"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_PROMPT_DIRTY="$FG[166]] %{$fg[red]%}♡ "
ZSH_THEME_GIT_PROMPT_CLEAN="$FG[166]] %{$fg[red]%}♥ "
ZSH_THEME_GIT_PROMPT_DIRTY="$FG[150]] %{$fg[150]%}♡ "
ZSH_THEME_GIT_PROMPT_CLEAN="$FG[150]] %{$fg[228]%}♥ "

#TMOUT=10

Expand Down

0 comments on commit 6393a1c

Please sign in to comment.