Add dracula theme for docker and grep

This commit is contained in:
Sravan Balaji
2025-08-30 09:59:50 -04:00
parent 0035af788e
commit 203f16c66f
4 changed files with 42 additions and 2 deletions

View File

@@ -4513,6 +4513,12 @@ export TERM=xterm-256color
export QT_STYLE_OVERRIDE=kvantum
export XDG_CONFIG_HOME=$HOME/.config
# Dracula theme for Docker BuildKit - https://draculatheme.com/docker
export BUILDKIT_COLORS="run=189,147,249:cancel=241,250,140:error=255,85,85:warning=241,250,140"
# Dracula theme for GNU grep - https://draculatheme.com/grep
export GREP_COLORS="mt=1;38;2;255;85;85:fn=38;2;255;121;198:ln=38;2;80;250;123:bn=38;2;80;250;123:se=38;2;139;233;253"
# Greeting
clear
krabby random
@@ -4574,7 +4580,7 @@ setopt pushdminus
autoload -Uz compinit
compinit
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' # Case insensitive tab completion
zstyle ':completion:*' rehash true # automatically find new executables in path
zstyle ':completion:*' rehash true # automatically find new executables in path
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" # Colored completion (different colors for dirs/files/etc)
zstyle ':completion:*' completer _expand _complete _ignored _approximate
zstyle ':completion:*' menu select=2
@@ -4669,6 +4675,12 @@ else
bindkey -M vicmd "^[3;5~" delete-char
fi
# Dracula theme for Docker BuildKit - https://draculatheme.com/docker
export BUILDKIT_COLORS="run=189,147,249:cancel=241,250,140:error=255,85,85:warning=241,250,140"
# Dracula theme for GNU grep - https://draculatheme.com/grep
export GREP_COLORS="mt=1;38;2;255;85;85:fn=38;2;255;121;198:ln=38;2;80;250;123:bn=38;2;80;250;123:se=38;2;139;233;253"
# Greeting
clear
krabby random
@@ -4811,6 +4823,16 @@ fish_pager_color_secondary_completion f8f8f2
fish_pager_color_secondary_description 6272a4
#+END_SRC
**** Dracula Theme for CLI Tools
#+BEGIN_SRC fish :tangle fish/.config/fish/config.fish
# Dracula theme for Docker BuildKit - https://draculatheme.com/docker
export BUILDKIT_COLORS="run=189,147,249:cancel=241,250,140:error=255,85,85:warning=241,250,140"
# Dracula theme for GNU grep - https://draculatheme.com/grep
export GREP_COLORS="mt=1;38;2;255;85;85:fn=38;2;255;121;198:ln=38;2;80;250;123:bn=38;2;80;250;123:se=38;2;139;233;253"
#+END_SRC
**** Start Tmux
#+BEGIN_SRC fish :tangle fish/.config/fish/config.fish

View File

@@ -122,6 +122,12 @@ export TERM=xterm-256color
export QT_STYLE_OVERRIDE=kvantum
export XDG_CONFIG_HOME=$HOME/.config
# Dracula theme for Docker BuildKit - https://draculatheme.com/docker
export BUILDKIT_COLORS="run=189,147,249:cancel=241,250,140:error=255,85,85:warning=241,250,140"
# Dracula theme for GNU grep - https://draculatheme.com/grep
export GREP_COLORS="mt=1;38;2;255;85;85:fn=38;2;255;121;198:ln=38;2;80;250;123:bn=38;2;80;250;123:se=38;2;139;233;253"
# Greeting
clear
krabby random

View File

@@ -48,6 +48,12 @@ end
# Starship Prompt
starship init fish | source
# Dracula theme for Docker BuildKit - https://draculatheme.com/docker
export BUILDKIT_COLORS="run=189,147,249:cancel=241,250,140:error=255,85,85:warning=241,250,140"
# Dracula theme for GNU grep - https://draculatheme.com/grep
export GREP_COLORS="mt=1;38;2;255;85;85:fn=38;2;255;121;198:ln=38;2;80;250;123:bn=38;2;80;250;123:se=38;2;139;233;253"
if status is-interactive
and not set -q TMUX
tmux new-session

View File

@@ -50,7 +50,7 @@ setopt pushdminus
autoload -Uz compinit
compinit
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' # Case insensitive tab completion
zstyle ':completion:*' rehash true # automatically find new executables in path
zstyle ':completion:*' rehash true # automatically find new executables in path
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" # Colored completion (different colors for dirs/files/etc)
zstyle ':completion:*' completer _expand _complete _ignored _approximate
zstyle ':completion:*' menu select=2
@@ -145,6 +145,12 @@ else
bindkey -M vicmd "^[3;5~" delete-char
fi
# Dracula theme for Docker BuildKit - https://draculatheme.com/docker
export BUILDKIT_COLORS="run=189,147,249:cancel=241,250,140:error=255,85,85:warning=241,250,140"
# Dracula theme for GNU grep - https://draculatheme.com/grep
export GREP_COLORS="mt=1;38;2;255;85;85:fn=38;2;255;121;198:ln=38;2;80;250;123:bn=38;2;80;250;123:se=38;2;139;233;253"
# Greeting
clear
krabby random