dotfiles

config files and scripts
git clone git://git.hanetzok.net/dotfiles
Log | Files | Refs

commit 3fab1efbe8f81d67a24a5066401f8c7fc4f6fb0d
parent 9e014aa0f6e74a997a6ff8cd2d1052107c72ec7a
Author: Markus Hanetzok <markus@hanetzok.net>
Date:   Sun,  5 Oct 2025 22:44:26 +0200

changes to zshrc

replace highlighting plugin and add dracula colorscheme for it

Diffstat:
M.config/zsh/.zshrc | 3++-
A.config/zsh/highlighting-dracula.sh | 90+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 92 insertions(+), 1 deletion(-)

diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc @@ -54,5 +54,6 @@ bindkey -M vicmd '^e' edit-command-line bindkey -M visual '^[[P' vi-delete # Load syntax highlighting; should be last. -source /usr/share/zsh/plugins/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh 2>/dev/null +source "$HOME/.config/zsh/highlighting-dracula.sh" +source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null diff --git a/.config/zsh/highlighting-dracula.sh b/.config/zsh/highlighting-dracula.sh @@ -0,0 +1,90 @@ +# Dracula Theme (for zsh-syntax-highlighting) +# +# https://github.com/zenorocha/dracula-theme +# +# Copyright 2021, All rights reserved +# +# Code licensed under the MIT license +# http://zenorocha.mit-license.org +# +# @author George Pickering <@bigpick> +# @author Zeno Rocha <hi@zenorocha.com> +# Paste this files contents inside your ~/.zshrc before you activate zsh-syntax-highlighting +ZSH_HIGHLIGHT_HIGHLIGHTERS=(main cursor) +typeset -gA ZSH_HIGHLIGHT_STYLES +# Default groupings per, https://spec.draculatheme.com, try to logically separate +# possible ZSH_HIGHLIGHT_STYLES settings accordingly...? +# +# Italics not yet supported by zsh; potentially soon: +# https://github.com/zsh-users/zsh-syntax-highlighting/issues/432 +# https://www.zsh.org/mla/workers/2021/msg00678.html +# ... in hopes that they will, labelling accordingly with ,italic where appropriate +# +# Main highlighter styling: https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters/main.md +# +## General +### Diffs +### Markup +## Classes +## Comments +ZSH_HIGHLIGHT_STYLES[comment]='fg=#6272A4' +## Constants +## Entitites +## Functions/methods +ZSH_HIGHLIGHT_STYLES[alias]='fg=#50FA7B' +ZSH_HIGHLIGHT_STYLES[suffix-alias]='fg=#50FA7B' +ZSH_HIGHLIGHT_STYLES[global-alias]='fg=#50FA7B' +ZSH_HIGHLIGHT_STYLES[function]='fg=#50FA7B' +ZSH_HIGHLIGHT_STYLES[command]='fg=#50FA7B' +ZSH_HIGHLIGHT_STYLES[precommand]='fg=#50FA7B,italic' +ZSH_HIGHLIGHT_STYLES[autodirectory]='fg=#FFB86C,italic' +ZSH_HIGHLIGHT_STYLES[single-hyphen-option]='fg=#FFB86C' +ZSH_HIGHLIGHT_STYLES[double-hyphen-option]='fg=#FFB86C' +ZSH_HIGHLIGHT_STYLES[back-quoted-argument]='fg=#BD93F9' +## Keywords +## Built ins +ZSH_HIGHLIGHT_STYLES[builtin]='fg=#8BE9FD' +ZSH_HIGHLIGHT_STYLES[reserved-word]='fg=#8BE9FD' +ZSH_HIGHLIGHT_STYLES[hashed-command]='fg=#8BE9FD' +## Punctuation +ZSH_HIGHLIGHT_STYLES[commandseparator]='fg=#FF79C6' +ZSH_HIGHLIGHT_STYLES[command-substitution-delimiter]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[command-substitution-delimiter-unquoted]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[process-substitution-delimiter]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[back-quoted-argument-delimiter]='fg=#FF79C6' +ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]='fg=#FF79C6' +ZSH_HIGHLIGHT_STYLES[back-dollar-quoted-argument]='fg=#FF79C6' +## Serializable / Configuration Languages +## Storage +## Strings +ZSH_HIGHLIGHT_STYLES[command-substitution-quoted]='fg=#F1FA8C' +ZSH_HIGHLIGHT_STYLES[command-substitution-delimiter-quoted]='fg=#F1FA8C' +ZSH_HIGHLIGHT_STYLES[single-quoted-argument]='fg=#F1FA8C' +ZSH_HIGHLIGHT_STYLES[single-quoted-argument-unclosed]='fg=#FF5555' +ZSH_HIGHLIGHT_STYLES[double-quoted-argument]='fg=#F1FA8C' +ZSH_HIGHLIGHT_STYLES[double-quoted-argument-unclosed]='fg=#FF5555' +ZSH_HIGHLIGHT_STYLES[rc-quote]='fg=#F1FA8C' +## Variables +ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument-unclosed]='fg=#FF5555' +ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[assign]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[named-fd]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[numeric-fd]='fg=#F8F8F2' +## No category relevant in spec +ZSH_HIGHLIGHT_STYLES[unknown-token]='fg=#FF5555' +ZSH_HIGHLIGHT_STYLES[path]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[path_pathseparator]='fg=#FF79C6' +ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[path_prefix_pathseparator]='fg=#FF79C6' +ZSH_HIGHLIGHT_STYLES[globbing]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[history-expansion]='fg=#BD93F9' +#ZSH_HIGHLIGHT_STYLES[command-substitution]='fg=?' +#ZSH_HIGHLIGHT_STYLES[command-substitution-unquoted]='fg=?' +#ZSH_HIGHLIGHT_STYLES[process-substitution]='fg=?' +#ZSH_HIGHLIGHT_STYLES[arithmetic-expansion]='fg=?' +ZSH_HIGHLIGHT_STYLES[back-quoted-argument-unclosed]='fg=#FF5555' +ZSH_HIGHLIGHT_STYLES[redirection]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[arg0]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[default]='fg=#F8F8F2' +ZSH_HIGHLIGHT_STYLES[cursor]='standout'