nvim: lsp: Update completion kind symbols

This broke due to an update with the nerd-fonts package.

See related
https://www.reddit.com/r/archlinux/comments/1358gvh/switch_from_ttfnerdfontssymbols2048emmono_broke/
https://github.com/ryanoasis/nerd-fonts/issues/1190

Stole one or two icons from
https://github.com/onsails/lspkind.nvim/pull/64

and the rest fixed by nerdfix.
https://github.com/loichyan/nerdfix
This commit is contained in:
Sanchayan Maity 2023-05-03 11:18:09 +05:30
parent eafc975e35
commit 3987cb202b
Signed by: sanchayanmaity
GPG key ID: 6F6A0609C12038F3

View file

@ -26,30 +26,30 @@ end
_G.PeekDefinition = peek_definition _G.PeekDefinition = peek_definition
protocol.CompletionItemKind = { protocol.CompletionItemKind = {
' Text' ; '󰉿 Text' ;
' Method' ; '󰡱 Method' ;
' Function' ; '󰊕 Function' ;
'Constructor' ; 'Constructor' ;
' Field' ; ' Field' ;
' Variable' ; ' Variable' ;
' Class' ; ' Class' ;
' Interface' ; ' Interface' ;
' Module' ; '󰏗 Module' ;
' Property' ; ' Property' ;
' Unit' ; ' Unit' ;
' Value' ; '󰮸 Value' ;
' Enum' ; ' Enum' ;
' Keyword' ; '󰌋 Keyword' ;
' Snippet' ; '󰷈 Snippet' ;
' Color' ; '󰌁 Color' ;
' File' ; '󰈙 File' ;
' Reference' ; '󰀾 Reference' ;
' Folder' ; ' Folder' ;
' EnumMember' ; '󰀬 EnumMember' ;
' Constant' ; ' Constant' ;
' Struct' ; ' Struct' ;
' Event' ; '󰀾 Event' ;
' Operator' ; '󰆕 Operator' ;
' TypeParameter'; ' TypeParameter';
} }