fix(build): remove neovim only plugins in compat
This commit is contained in:
@@ -40,9 +40,18 @@ run(
|
||||
lushwright.to_vimscript,
|
||||
lushwright.vim_compatible_vimscript,
|
||||
function(colors)
|
||||
-- filter out treesitter
|
||||
local vimcolors = vim.tbl_filter(function(color)
|
||||
return not string.match(color, "@")
|
||||
return not (
|
||||
string.match(color, "@")
|
||||
or string.match(color, "Noice")
|
||||
or string.match(color, "Telescope")
|
||||
or string.match(color, "Leap")
|
||||
or string.match(color, "Hop")
|
||||
or string.match(color, "Neogit")
|
||||
or string.match(color, "NvimTree")
|
||||
or string.match(color, "Cmp")
|
||||
or string.match(color, "Mason")
|
||||
)
|
||||
end, colors)
|
||||
return {
|
||||
vimcolors,
|
||||
|
||||
Reference in New Issue
Block a user