Skip to content

Instantly share code, notes, and snippets.

@louis030195
Created November 1, 2025 16:40
Show Gist options
  • Save louis030195/55767de65eeb36da6d1322773cdac813 to your computer and use it in GitHub Desktop.
Save louis030195/55767de65eeb36da6d1322773cdac813 to your computer and use it in GitHub Desktop.
Helix light theme setup for macOS

Setup Helix Light Theme on macOS

Install Helix and configure it to match light terminal theme.

Install Helix

brew install helix

Configure Theme

mkdir -p ~/.config/helix
cat > ~/.config/helix/config.toml << 'TOML'
theme = "onelight"

[editor]
line-number = "relative"
cursorline = true
color-modes = true
bufferline = "multiple"

[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"

[editor.file-picker]
hidden = false
TOML

Verify

hx ~/.config/helix/config.toml

Should show light theme matching your terminal.

Alternative Light Themes

If onelight doesn't match perfectly, try:

  • theme = "github_light"
  • theme = "gruvbox_light"
  • theme = "papercolor-light"

Edit ~/.config/helix/config.toml and change the theme line.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment