This commit is contained in:
Chris 2021-03-15 03:29:40 -04:00
parent 0b76e8f7b4
commit 16b711d9b0

26
lua/nv-lspkind/init.lua Normal file
View file

@ -0,0 +1,26 @@
-- symbols for autocomplete
require('lspkind').init({
with_text = false,
symbol_map = {
Text = '',
Method = '',
Function = '',
Constructor = '',
Variable = '[]',
Class = '',
Interface = '',
Module = '',
Property = '',
Unit = '',
Value = '',
Enum = '',
Keyword = '',
Snippet = '',
Color = '',
File = '',
Folder = '',
EnumMember = '',
Constant = '',
Struct = ''
},
})