From 41a5497f0d420524d14a032208ca8b40e7593c4f Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 1 Mar 2012 17:15:18 -0600 Subject: add zsh-syntax-highlighting plugin --- .gitmodules | 3 +++ Makefile | 3 ++- zsh/zsh-syntax-highlighting | 1 + zshrc | 12 ++++++++++++ 4 files changed, 18 insertions(+), 1 deletion(-) create mode 160000 zsh/zsh-syntax-highlighting diff --git a/.gitmodules b/.gitmodules index 70cbe06..91e36d8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -37,3 +37,6 @@ [submodule "vim/bundle/gundo"] path = vim/bundle/gundo url = git://github.com/sjl/gundo.vim.git +[submodule "zsh/zsh-syntax-highlighting"] + path = zsh/zsh-syntax-highlighting + url = git://github.com/zsh-users/zsh-syntax-highlighting diff --git a/Makefile b/Makefile index aa6d535..2b23c62 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,8 @@ INSTALL = abcde.conf \ themes \ urxvt \ vim \ - xmonad + xmonad \ + zsh INSTALLED = $(patsubst %,$(INTO)/.%,$(INSTALL)) BUILD = bin/nethack/timettyrec pwsafe.dat $(addsuffix .dat,$(filter-out %.dat,$(wildcard fortune/*))) diff --git a/zsh/zsh-syntax-highlighting b/zsh/zsh-syntax-highlighting new file mode 160000 index 0000000..bb0d575 --- /dev/null +++ b/zsh/zsh-syntax-highlighting @@ -0,0 +1 @@ +Subproject commit bb0d575942760fe483790fe878ea43b1f781e2ca diff --git a/zshrc b/zshrc index 6adcd9c..44605cf 100644 --- a/zshrc +++ b/zshrc @@ -42,6 +42,18 @@ export HISTFILE=$HOME/.zsh_history export HISTSIZE=1000000000 export SAVEHIST=1000000000 export SPROMPT="Correct $fg[red]%R$reset_color to $fg[green]%r$reset_color? [ynae] " +# plugins {{{ +# zsh-syntax-highlighting {{{ +source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +ZSH_HIGHLIGHT_STYLES[path]='fg=blue,bold' +ZSH_HIGHLIGHT_STYLES[assign]='fg=cyan' +ZSH_HIGHLIGHT_STYLES[command]='fg=green' +ZSH_HIGHLIGHT_STYLES[precommand]='fg=yellow' +ZSH_HIGHLIGHT_STYLES[builtin]='fg=yellow' +ZSH_HIGHLIGHT_STYLES[reserved-word]='fg=yellow' +ZSH_HIGHLIGHT_STYLES[globbing]='fg=magenta' +# }}} +# }}} # prompt {{{ function shell_prompt_precmd () { PROMPT=`fancy-prompt --prompt-escape zsh $?` -- cgit v1.2.3-54-g00ecf