Files
everforest-resources/cli/ripgrep/.ripgreprc-light-soft
Ismo Vuorinen 5c0e8b0f40 feat: enhance install script and theme generation
- install.sh now installs all variants when run without parameters
- preserve single-variant mode when --variant is specified
- add variant names to generated file headers for clarity
- fix tool name extraction to preserve compound names like git-delta
- fix CSS variable preservation during header generation
2025-09-09 00:01:46 +03:00

34 lines
738 B
Plaintext

# Everforest light-soft theme for ripgrep
# Place this in ~/.ripgreprc or set RIPGREP_CONFIG_PATH
# Color configuration using ANSI codes
# Format: --colors=TYPE:STYLE:ANSICODE
# Match highlighting - use bright green for matches
--colors=match:fg:#a7c080
--colors=match:style:bold
# Line numbers - use gray for line numbers
--colors=line:fg:#c0cdb8
# File paths - use blue for file paths
--colors=path:fg:#7fbbb3
--colors=path:style:bold
# Column numbers - use gray for column numbers
--colors=column:fg:#c0cdb8
# General ripgrep configuration
--smart-case
--hidden
--follow
--glob=!.git/*
--glob=!node_modules/*
--glob=!.vscode/*
--glob=!.idea/*
--max-columns=150
--max-columns-preview
# Show line numbers by default
--line-number