feat: add auto complete icons
This commit is contained in:
parent
7e3cc716c5
commit
694b9d4024
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user