feat: add auto complete icons

This commit is contained in:
David JULIEN 2021-05-21 21:12:11 +02:00
parent 7e3cc716c5
commit 694b9d4024
1 changed files with 29 additions and 0 deletions

View File

@ -34,3 +34,32 @@ vim.fn.sign_define(
numhl = "LspDiagnosticsSignInformation"
}
)
-- symbols for autocomplete
vim.lsp.protocol.CompletionItemKind = {
"", -- 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
}