Unable to change function keyword syntax highlight from same color as keyword like in screenshots #428
Replies: 1 comment
-
The fix was to add groups and do a ["@keyword.function"]. You are able to find the "@keyword.function" by using the ":Inspect" command in Neovim. Hopefully this helps someone in the future. final file:
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
in the nightfox screenshots they have rust example code and fn is red and let is purple. I dont understand how when customizing colors I cannot get them to show different colors. If I change the keyword color it changes both. I am using basic LazyVim config.
this is the rough config of my colorscheme.lua
`return {
{
"EdenEast/nightfox.nvim",
name = "nightfox",
config = function()
local C = require("nightfox.lib.color")
local Shade = require("nightfox.lib.shade")
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "nightfox",
},
},
}`
Beta Was this translation helpful? Give feedback.
All reactions