You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting this error here:
Failed to run config for nvim-highlite
.../nvim/lazy/nvim-highlite/lua/highlite/export/wezterm.lua:108: attempt to inde
x upvalue 'Util' (a boolean value)
stacktrace:
.config/nvim/lua/plugins/themes.lua:25 inconfig
.config/nvim/init.lua:83
This is my config:
{'Iron-E/nvim-highlite',
lazy = false,
priority = math.huge,
version = '^4.0.0',
config = function(_, opts)
-- OPTIONAL: setup the plugin. See "Configuration" for information
require('highlite').setup {generator = {plugins = {vim = false}, syntax = false}}
require('highlite.export').wezterm(
'tokyonight',
-- all settings below are OPTIONAL
{
-- controls the directory where the exported colorscheme will be written.
dir = '~/.config/nvim/colors/',
filename = 'foo',
-- skip exporting certain groups. Currently only works for the `nvim` and `vim` targets
filter = function(group, default_filter)
return default_filter(group) or (group:find '^Nvim' or group:find '^Redraw') ~= nil
end,
-- if `false`, an existing target file will not be overwritten. Instead, a
-- file with a similar name will be created.
force = true,
-- if `true`, the function will not notify you when it is finished.
silent = false,
}
)
end,
},
The text was updated successfully, but these errors were encountered:
Getting this error here:
Failed to run
config
for nvim-highlite.../nvim/lazy/nvim-highlite/lua/highlite/export/wezterm.lua:108: attempt to inde
x upvalue 'Util' (a boolean value)
stacktrace:
This is my config:
{'Iron-E/nvim-highlite',
lazy = false,
priority = math.huge,
version = '^4.0.0',
config = function(_, opts)
-- OPTIONAL: setup the plugin. See "Configuration" for information
require('highlite').setup {generator = {plugins = {vim = false}, syntax = false}}
require('highlite.export').wezterm(
'tokyonight',
-- all settings below are OPTIONAL
{
-- controls the directory where the exported colorscheme will be written.
dir = '~/.config/nvim/colors/',
filename = 'foo',
},
The text was updated successfully, but these errors were encountered: