shaunsingh / nord.nvim

Neovim theme based off of the Nord Color Palette, written in lua with tree sitter support
GNU General Public License v2.0
796 stars 107 forks source link

support Nvim 10.0 new "LspInlayHint" and "WinSeparator" #154

Open dupeiran001 opened 5 months ago

dupeiran001 commented 5 months ago

as shown here:

Screenshot 2024-03-07 at 13 07 37

after changing my Nvim to 0.10.0 preview, I found the win separator become a white line, and the inlay hint color is almost invisible when selected.

Maybe should change win separator fg to background color, and inlay hint to a lighter grey?

Nvim version:

$ nvim -v
VIM v0.10.0-dev-2488+g5d4e1693c
Build type: RelWithDebInfo
LuaJIT 2.1.1707061634
Run "nvim -V1 -v" for more info

this is my Nvim config: dot files

stevalkr commented 3 months ago

Seems this repo isn't actively maintained anymore...

Here's my quick fix, using the same hl as comments, good for me

      require('nord.util').highlight('LspInlayHint',
        { fg = colors.nord3_gui_bright, style = 'italic' }
      )