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
1 changed files with 14 additions and 14 deletions

View File

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