LunarVim/lua/nv-lspkind/init.lua

27 lines
590 B
Lua
Raw Normal View History

2021-03-15 08:29:40 +01:00
-- 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 = ''
},
})