hmmm, what about that syntax stuff?

This commit is contained in:
Johannes Findeisen 2015-12-12 18:22:01 +01:00
commit e9ed294afd
3 changed files with 1 additions and 13 deletions

3
.gitmodules vendored
View file

@ -4,6 +4,3 @@
[submodule "nerdtree"]
path = .vim/bundle/nerdtree
url = https://github.com/scrooloose/nerdtree.git
[submodule "zsh-syntax-highlighting"]
path = .zsh/zsh-syntax-highlighting
url = https://github.com/zsh-users/zsh-syntax-highlighting.git

@ -1 +0,0 @@
Subproject commit 3dc574190071ef59054f6d693132410b37aa3ae4

10
.zshrc
View file

@ -1,4 +1,4 @@
# Extend my $PATH to $PATH/bin
# Extend my $PATH to $HOME/bin
export PATH=$HOME/bin:/home/hanez/.gem/ruby/2.2.0/bin:$PATH
# Export the $EDITOR and $TERMINAL
@ -72,13 +72,6 @@ HISTFILE=~/.zsh_history
# Load oh-my-zsh stuff
source $ZSH/oh-my-zsh.sh
# Stuff thats needs to be done after sourcing oh-my-zsh
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
if [ -e ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]
then
source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
fi
# Now source some stuff that should not be public
if [ -e ~/.zshprivate ]
then
@ -129,4 +122,3 @@ case $TERM in
precmd () {print -Pn "\e]0;%n@%m: %~\a"}
;;
esac