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

View file

@ -13,8 +13,7 @@ install_dark() {
ln -sf "${DOTFILES}/bat/config-dark" "${DOTFILES}/bat/config" ln -sf "${DOTFILES}/bat/config-dark" "${DOTFILES}/bat/config"
ln -sf "${DOTFILES}/vim/colors/jdkaplan-dark.vim" "${DOTFILES}/vim/colors/jdkaplan.vim" ln -sf "${DOTFILES}/vim/colors/jdkaplan-dark.vim" "${DOTFILES}/vim/colors/jdkaplan.vim"
ln -sf "${DOTFILES}/neovim/colors/jdkaplan-cool.lua" "${DOTFILES}/neovim/colors/jdkaplan-temp.lua" ln -sf "${DOTFILES}/neovim/colors/jdkaplan-cool.lua" "${DOTFILES}/neovim/colors/jdkaplan-temp.lua"
ln -sf "${DOTFILES}/helix/themes/dark.toml" "${DOTFILES}/helix/themes/jdkaplan.toml"
"${DOTFILES}/helix/install" dark
if [ "${OSTYPE}" == 'Linux' ]; then if [ "${OSTYPE}" == 'Linux' ]; then
ln -sf "${DOTFILES}/xsettingsd/xsettingsd-dark.conf" "${DOTFILES}/xsettingsd/xsettingsd.conf" ln -sf "${DOTFILES}/xsettingsd/xsettingsd-dark.conf" "${DOTFILES}/xsettingsd/xsettingsd.conf"
@ -32,8 +31,7 @@ install_light() {
ln -sf "${DOTFILES}/bat/config-light" "${DOTFILES}/bat/config" ln -sf "${DOTFILES}/bat/config-light" "${DOTFILES}/bat/config"
ln -sf "${DOTFILES}/vim/colors/jdkaplan-light.vim" "${DOTFILES}/vim/colors/jdkaplan.vim" ln -sf "${DOTFILES}/vim/colors/jdkaplan-light.vim" "${DOTFILES}/vim/colors/jdkaplan.vim"
ln -sf "${DOTFILES}/neovim/colors/jdkaplan-warm.lua" "${DOTFILES}/neovim/colors/jdkaplan-temp.lua" ln -sf "${DOTFILES}/neovim/colors/jdkaplan-warm.lua" "${DOTFILES}/neovim/colors/jdkaplan-temp.lua"
ln -sf "${DOTFILES}/helix/themes/light.toml" "${DOTFILES}/helix/themes/jdkaplan.toml"
"${DOTFILES}/helix/install" light
if [ "${OSTYPE}" == 'Linux' ]; then if [ "${OSTYPE}" == 'Linux' ]; then
ln -sf "${DOTFILES}/xsettingsd/xsettingsd-light.conf" "${DOTFILES}/xsettingsd/xsettingsd.conf" ln -sf "${DOTFILES}/xsettingsd/xsettingsd-light.conf" "${DOTFILES}/xsettingsd/xsettingsd.conf"

View file

@ -4,7 +4,6 @@
- mkdir -p ~/.config/direnv - mkdir -p ~/.config/direnv
- mkdir -p ~/.config/gh - mkdir -p ~/.config/gh
- ./bin/set-colors - ./bin/set-colors
- ./helix/install
- clean: ["~", "~/.config"] - clean: ["~", "~/.config"]

2
helix/.gitignore vendored
View file

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

View file

@ -1,3 +1,5 @@
theme = "jdkaplan"
[editor] [editor]
scrolloff = 1 scrolloff = 1
cursorline = true 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" }