1
0
Fork 0

helix: Remove italic modifier from comment style

This commit is contained in:
Jeremy Kaplan 2026-05-19 19:49:00 -04:00
commit 5bc355a7fa
10 changed files with 15 additions and 21 deletions

2
helix/.gitignore vendored
View file

@ -1,2 +0,0 @@
config.toml
theme.toml

View file

@ -1,3 +1,5 @@
theme = "jdkaplan"
[editor]
scrolloff = 1
cursorline = true

View file

@ -1 +0,0 @@
theme = "onedark"

View file

@ -1,12 +0,0 @@
#!/usr/bin/env bash
set -exuo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")"
case "${1-}" in
light) ln -sf light.toml theme.toml ;;
dark) ln -sf dark.toml theme.toml ;;
esac
cat theme.toml main.toml > config.toml

View file

@ -1 +0,0 @@
theme = "onelight"

1
helix/themes/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
jdkaplan.toml

3
helix/themes/dark.toml Normal file
View file

@ -0,0 +1,3 @@
inherits = "onedark"
"comment" = { fg = "light-gray" }

7
helix/themes/light.toml Normal file
View file

@ -0,0 +1,7 @@
inherits = "onelight"
"comment" = { fg = "grey" }
"comment.line" = { fg = "grey" }
"comment.line.documentation" = { fg = "grey" }
"comment.block" = { fg = "grey" }
"comment.block.documentation" = { fg = "grey" }