-
Hi there, I've been exploring various customization options with Nightfox, and it's going fairly well, but I'm stumped on how one might modify the Treesitter mappings found here (https://github.com/EdenEast/nightfox.nvim/blob/main/lua/nightfox/group/modules/treesitter.lua) from the user configuration options. My use case is that I would like As far as I've been able to work out, there is no user-facing method of accomplishing this. Both map to Any guidance would be greatly appreciated! I've been using Nightfox for a few years now and it's by far my favourite option for colours in Neovim! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Not sure I fully understand your question but if I understand correctly you want some way to set require("nightfox").setup({
groups = {
all = {
["@function.builtin"] = { fg = "palette.blue" },
["@keyword.return"] = { fg = "palette.red" },
},
},
}) |
Beta Was this translation helpful? Give feedback.
Not sure I fully understand your question but if I understand correctly you want some way to set
@function.builtin
and@keyword.return
differently. A colorscheme's spec also contains the underlying palette. You can set this like: