Yin-Hsun Hung

Results 24 comments of Yin-Hsun Hung

https://github.com/ellisonleao/gruvbox.nvim/issues/107#issuecomment-1101352293 You need to set `guibg` and `ctermbg` of `Normal` to NONE after `colorscheme gruvbox` ```lua vim.cmd("colorscheme gruvbox") vim.api.nvim_set_hl(0, "Normal", {guibg = NONE, ctermbg = NONE}) ```

> hightlighted letters are unreadable ![image](https://user-images.githubusercontent.com/42291930/114138043-dcfc4e00-992e-11eb-88b6-2c0138790f71.png) Have the same problem too. ![image](https://user-images.githubusercontent.com/58657914/122629456-be18f580-d0ef-11eb-83de-0144e059c24a.png) If I was in vim diff mode. I can't see the cursor. ![image](https://user-images.githubusercontent.com/58657914/122629502-16e88e00-d0f0-11eb-91b2-952453af18e5.png) And this should look like...

Might be gruvbox colorscheme produce the problem. If I change to other colorscheme, it's much better.

> ![image](https://user-images.githubusercontent.com/58657914/122629456-be18f580-d0ef-11eb-83de-0144e059c24a.png) > If I was in vim diff mode. I can't see the cursor. I found that the `bg` is black, and `fg` is yellow in this picture. That's...

I have this issue before. I set `HISTFILE` with ```zsh HISTFILE="$HOME/.cache/zsh_history" ``` I found that I missing `export`. Solve it after adding `export` ```zsh export HISTFILE="$HOME/.cache/zsh_history" ```

I have the same issue after 9d7e7c690724fb377c220632cd790a4b4be921b6. Roll back to c7a852728717e60a41c2b2fbeac70d2b2269b86c

Some obsoleted icons didn't change. [nerdfix](https://github.com/loichyan/nerdfix) may help.

Update dark hard: `#1d2021` `#fabd2f`, 2:1 -> `#675425` ![image](https://github.com/ellisonleao/gruvbox.nvim/assets/58657914/18f717d5-60be-4069-9695-979622e50eca) dark normal: `#282828` `#fabd2f`, 2:1 -> `#6f5a2b` ![image](https://github.com/ellisonleao/gruvbox.nvim/assets/58657914/009e2bbc-06e3-4177-8dc7-db39b36f66ea) dark soft: `#32302f` `#fabd2f`, 2:1 -> `#755f2f` ![image](https://github.com/ellisonleao/gruvbox.nvim/assets/58657914/2b7fc92e-a838-4a42-954c-533cc2428b6a) light hard: `#f9f5d7` `#b57614`, 2:1...