feat(moonfly): add highlight for @variable.member
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
local custom_highlight = vim.api.nvim_create_augroup("CustomHighlight", {})
|
||||
vim.api.nvim_create_autocmd("ColorScheme", {
|
||||
pattern = "moonfly",
|
||||
callback = function ()
|
||||
vim.api.nvim_set_hl(0, "@variable.member", { link = "MoonflyTurquoise", })
|
||||
end,
|
||||
group = custom_highlight,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user