diff --git a/lua/zenbones/shipwright/runners/vim.lua b/lua/zenbones/shipwright/runners/vim.lua index ddc9170..95019c5 100644 --- a/lua/zenbones/shipwright/runners/vim.lua +++ b/lua/zenbones/shipwright/runners/vim.lua @@ -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,