kind.lua 530 B

12345678910111213141516171819202122232425262728293031
  1. local M = {}
  2. M.icons = {
  3. Class = " ",
  4. Color = " ",
  5. Constant = "ﲀ ",
  6. Constructor = " ",
  7. Enum = "練",
  8. EnumMember = " ",
  9. Event = " ",
  10. Field = " ",
  11. File = "",
  12. Folder = " ",
  13. Function = " ",
  14. Interface = "ﰮ ",
  15. Keyword = " ",
  16. Method = " ",
  17. Module = " ",
  18. Operator = "",
  19. Property = " ",
  20. Reference = " ",
  21. Snippet = " ",
  22. Struct = " ",
  23. Text = " ",
  24. TypeParameter = " ",
  25. Unit = "塞",
  26. Value = " ",
  27. Variable = " ",
  28. }
  29. return M