Skip to content
Snippets Groups Projects
Commit a0a18254 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Added zsh-syntax-highlighting

parent aaeba888
No related branches found
No related tags found
No related merge requests found
...@@ -7,3 +7,6 @@ ...@@ -7,3 +7,6 @@
[submodule "awesome-terminal-fonts"] [submodule "awesome-terminal-fonts"]
path = awesome-terminal-fonts path = awesome-terminal-fonts
url = https://github.com/gabrielelana/awesome-terminal-fonts.git url = https://github.com/gabrielelana/awesome-terminal-fonts.git
[submodule "zsh-syntax-highlighting"]
path = zsh-syntax-highlighting
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
...@@ -31,6 +31,9 @@ This is updated by running ...@@ -31,6 +31,9 @@ This is updated by running
cd powerlevel9k cd powerlevel9k
git pull git pull
cd .. cd ..
cd zsh-syntax-highlighting
git pull
cd ..
The fonts/ is a download of the complete fonts in https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/Hack The fonts/ is a download of the complete fonts in https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/Hack
../../zsh-syntax-highlighting
\ No newline at end of file
Subproject commit 02a37dd919dc48e0821186e5f20e78bd0215f86a
# Oh My ZSH plugins to load # Oh My ZSH plugins to load
plugins=(colored-man-pages command-not-found gitfast screen) plugins=(colored-man-pages colorize command-not-found gitfast screen zsh-syntax-highlighting)
# Add highlight color to prompt
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
typeset -gA ZSH_HIGHLIGHT_STYLES
ZSH_HIGHLIGHT_STYLES[cursor]='bold'
ZSH_HIGHLIGHT_STYLES[alias]='fg=green,bold'
ZSH_HIGHLIGHT_STYLES[suffix-alias]='fg=green,bold'
ZSH_HIGHLIGHT_STYLES[builtin]='fg=green,bold'
ZSH_HIGHLIGHT_STYLES[function]='fg=green,bold'
ZSH_HIGHLIGHT_STYLES[command]='fg=green,bold'
ZSH_HIGHLIGHT_STYLES[precommand]='fg=green,bold'
ZSH_HIGHLIGHT_STYLES[hashed-command]='fg=green,bold'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment