lsp-kind.lua 597 B

123456789101112131415161718192021222324252627
  1. -- commented options are defaults
  2. require('lspkind').init({
  3. with_text = false,
  4. symbol_map = {
  5. Text = '  ',
  6. Method = '  ',
  7. Function = '  ',
  8. Constructor = '  ',
  9. Variable = '[]',
  10. Class = '  ',
  11. Interface = ' 蘒',
  12. Module = '  ',
  13. Property = '  ',
  14. Unit = ' 塞 ',
  15. Value = '  ',
  16. Enum = ' 練',
  17. Keyword = '  ',
  18. Snippet = '  ',
  19. Color = '',
  20. File = '',
  21. Folder = ' ﱮ ',
  22. EnumMember = '  ',
  23. Constant = '  ',
  24. Struct = '  '
  25. },
  26. })