diff options
author | Rafael <[email protected]> | 2021-04-15 13:30:25 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-15 12:30:25 -0400 |
commit | 886b3bde7503671af91585ebdd27b0dc68e655c2 (patch) | |
tree | e56adaf43be40935d083848865e0a11a8910e96d /lua/lv-lspkind/init.lua | |
parent | e834d6361e7982d07d2b8fa6810a83a1db952e2f (diff) |
replace lsp-kind for vim.lsp.protocol.CompletionItemKind native option (#257)
Diffstat (limited to 'lua/lv-lspkind/init.lua')
-rw-r--r-- | lua/lv-lspkind/init.lua | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/lua/lv-lspkind/init.lua b/lua/lv-lspkind/init.lua deleted file mode 100644 index e3c590fc..00000000 --- a/lua/lv-lspkind/init.lua +++ /dev/null @@ -1,26 +0,0 @@ --- 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 = ' ' - }, -}) |