123456789101112131415161718192021222324252627282930313233 |
- local M = {}
- function M.setup()
- vim.lsp.protocol.CompletionItemKind = {
- -- symbols for autocomplete
- " (Text) ",
- " (Method)",
- " (Function)",
- " (Constructor)",
- " ﴲ (Field)",
- "[] (Variable)",
- " (Class)",
- " ﰮ (Interface)",
- " (Module)",
- " 襁 (Property)",
- " (Unit)",
- " (Value)",
- " 練 (Enum)",
- " (Keyword)",
- " (Snippet)",
- " (Color)",
- " (File)",
- " (Reference)",
- " (Folder)",
- " (EnumMember)",
- " ﲀ (Constant)",
- " ﳤ (Struct)",
- " (Event)",
- " (Operator)",
- " (TypeParameter)",
- }
- end
- return M
|