transparent.lua 872 B

1234567891011121314151617181920212223
  1. return {
  2. "xiyaowong/transparent.nvim",
  3. lazy = false,
  4. config = function()
  5. require("transparent").setup({ -- Optional, you don't have to run setup.
  6. groups = { -- table: default groups
  7. 'Normal', 'NormalNC', 'Comment', 'Constant', 'Special', 'Identifier',
  8. 'Statement', 'PreProc', 'Type', 'Underlined', 'Todo', 'String', 'Function',
  9. 'Conditional', 'Repeat', 'Operator', 'Structure', 'LineNr', 'NonText',
  10. 'SignColumn', 'CursorLine', 'CursorLineNr', 'StatusLine', 'StatusLineNC',
  11. 'EndOfBuffer',
  12. },
  13. extra_groups = {
  14. "NormalFloat", -- plugins which have float panel such as Lazy, Mason, LspInfo
  15. "NvimTreeNormal", -- NvimTree}, -- table: additional groups that should be cleared
  16. "WhichKeyFloat",
  17. },
  18. exclude_groups = {}, -- table: groups you don't want to clear
  19. })
  20. end
  21. }