helix: Remove italic modifier from comment style
This commit is contained in:
parent
ac06f113cc
commit
5bc355a7fa
10 changed files with 15 additions and 21 deletions
|
|
@ -13,8 +13,7 @@ install_dark() {
|
|||
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}/neovim/colors/jdkaplan-cool.lua" "${DOTFILES}/neovim/colors/jdkaplan-temp.lua"
|
||||
|
||||
"${DOTFILES}/helix/install" dark
|
||||
ln -sf "${DOTFILES}/helix/themes/dark.toml" "${DOTFILES}/helix/themes/jdkaplan.toml"
|
||||
|
||||
if [ "${OSTYPE}" == 'Linux' ]; then
|
||||
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}/vim/colors/jdkaplan-light.vim" "${DOTFILES}/vim/colors/jdkaplan.vim"
|
||||
ln -sf "${DOTFILES}/neovim/colors/jdkaplan-warm.lua" "${DOTFILES}/neovim/colors/jdkaplan-temp.lua"
|
||||
|
||||
"${DOTFILES}/helix/install" light
|
||||
ln -sf "${DOTFILES}/helix/themes/light.toml" "${DOTFILES}/helix/themes/jdkaplan.toml"
|
||||
|
||||
if [ "${OSTYPE}" == 'Linux' ]; then
|
||||
ln -sf "${DOTFILES}/xsettingsd/xsettingsd-light.conf" "${DOTFILES}/xsettingsd/xsettingsd.conf"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@
|
|||
- mkdir -p ~/.config/direnv
|
||||
- mkdir -p ~/.config/gh
|
||||
- ./bin/set-colors
|
||||
- ./helix/install
|
||||
|
||||
- clean: ["~", "~/.config"]
|
||||
|
||||
|
|
|
|||
2
helix/.gitignore
vendored
2
helix/.gitignore
vendored
|
|
@ -1,2 +0,0 @@
|
|||
config.toml
|
||||
theme.toml
|
||||
|
|
@ -1,3 +1,5 @@
|
|||
theme = "jdkaplan"
|
||||
|
||||
[editor]
|
||||
scrolloff = 1
|
||||
cursorline = true
|
||||
|
|
@ -1 +0,0 @@
|
|||
theme = "onedark"
|
||||
|
|
@ -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
|
||||
|
|
@ -1 +0,0 @@
|
|||
theme = "onelight"
|
||||
1
helix/themes/.gitignore
vendored
Normal file
1
helix/themes/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
jdkaplan.toml
|
||||
3
helix/themes/dark.toml
Normal file
3
helix/themes/dark.toml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
inherits = "onedark"
|
||||
|
||||
"comment" = { fg = "light-gray" }
|
||||
7
helix/themes/light.toml
Normal file
7
helix/themes/light.toml
Normal 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" }
|
||||
Loading…
Add table
Add a link
Reference in a new issue