diff --git a/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh b/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh index 0d389ec..13c3d4a 100644 --- a/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh +++ b/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh @@ -42,7 +42,7 @@ zmodload zsh/zpty # Color to use when highlighting suggestion # Uses format of `region_highlight` # More info: http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Zle-Widgets -ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=8' +ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=3' # Prefix to use when saving original versions of bound widgets ZSH_AUTOSUGGEST_ORIGINAL_WIDGET_PREFIX=autosuggest-orig- diff --git a/.tmux.conf b/.tmux.conf index f7b8cd6..978996d 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -14,3 +14,38 @@ set -g default-terminal "screen-256color" setw -g monitor-activity on set -g visual-activity on set -g status-justify centre +#### COLOUR (Solarized dark) +ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=3' +# default statusbar colors +set-option -g status-bg black #base02 +set-option -g status-fg yellow #yellow +set-option -g status-attr default + +# default window title colors +set-window-option -g window-status-fg brightblue #base0 +set-window-option -g window-status-bg default +#set-window-option -g window-status-attr dim + +# active window title colors +set-window-option -g window-status-current-fg brightred #orange +set-window-option -g window-status-current-bg default +#set-window-option -g window-status-current-attr bright + +# pane border +set-option -g pane-border-fg black #base02 +set-option -g pane-active-border-fg brightgreen #base01 + +# message text +set-option -g message-bg black #base02 +set-option -g message-fg brightred #orange + +# pane number display +set-option -g display-panes-active-colour blue #blue +set-option -g display-panes-colour brightred #orange + +# clock +set-window-option -g clock-mode-colour green #green + +# bell +set-window-option -g window-status-bell-style fg=black,bg=red #base02, red + diff --git a/.zshrc b/.zshrc index 6130a01..6902486 100644 --- a/.zshrc +++ b/.zshrc @@ -29,10 +29,10 @@ ZSH_THEME="bureau" # DISABLE_AUTO_TITLE="true" # Uncomment the following line to enable command auto-correction. -# ENABLE_CORRECTION="true" + ENABLE_CORRECTION="true" # Uncomment the following line to display red dots whilst waiting for completion. -# COMPLETION_WAITING_DOTS="true" + COMPLETION_WAITING_DOTS="true" # Uncomment the following line if you want to disable marking untracked files # under VCS as dirty. This makes repository status check for large repositories @@ -85,3 +85,4 @@ source $ZSH/oh-my-zsh.sh # alias ohmyzsh="mate ~/.oh-my-zsh" export VISUAL="/usr/bin/vim" export EDITOR="$VISUAL" +ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=3'