Files
home/.zshenv
T
valknarandClaude Sonnet 4.6 e15dd0a6c5 feat: set GLOW_STYLE and add glow to go:install:tools
- .zshenv: export GLOW_STYLE pointing to Nord theme JSON
- arty.yml: add glow v2 to go:install:tools

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-26 18:26:04 +02:00

22 lines
480 B
Bash

# Set custom zsh directory
ZSH_CUSTOM="$HOME/.zsh"
# Set theme
ZSH_THEME="powerlevel10k/powerlevel10k"
# Enable plugins
plugins=(
git gh sudo ssh ruby rust python node rsync nvm rbenv pyenv
docker docker-compose zsh-autosuggestions zsh-syntax-highlighting
zsh-interactive-cd zsh-navigation-tools
)
# Set micro as editor
export EDITOR=micro
# Enable TrueColors for micro
export MICRO_TRUECOLOR=1
# Set custom glow style
export GLOW_STYLE="$HOME/.config/glow/nord.json"