jesseduffield / lazygit

simple terminal UI for git commands
MIT License
53.05k stars 1.85k forks source link

Disable bold highlight #2304

Open uloco opened 1 year ago

uloco commented 1 year ago

Is there a way to disable the bold highlighting of selected lines? I just want it to reverse and not bold the text. I tried doing so with the config but whatever color/modifier I use the text is is always bold. (and uses the bold color)

svanharmelen commented 9 months ago

Did you ever find a solution @uloco? Would like to "fix" that as well :)

uloco commented 9 months ago

Idon't remember but I think I worked around it.

See my dotfiles for config

svanharmelen commented 9 months ago

Will have a look, thanks...

niksingh710 commented 8 months ago

@svanharmelen got solution?

stefanhaller commented 8 months ago

It's hard-coded in gocui right now, there's no way to change it through configuration. That would be a feature request, I guess.

svanharmelen commented 8 months ago

@niksingh710 not really, but I added this to my lazygit.yml which made the "problem" much less visible (selected lines looks much more natural now). So for me this is not really an issue anymore...

gui:
  theme:
    selectedLineBgColor:
      - '#444444'

EDIT: I do use the latest version (so build by go install github.com/jesseduffield/lazygit@master or by checking out the repo and building locally) as it has some fixes around the selected line highlighting in detail/diff views.