summaryrefslogtreecommitdiff
path: root/lua/nv-lspkind/init.lua
diff options
context:
space:
mode:
authorChris <[email protected]>2021-03-15 03:29:40 -0400
committerChris <[email protected]>2021-03-15 03:29:40 -0400
commit16b711d9b0387b7771b51fb54821dd2824bf86bb (patch)
treed5dc3d76301ff0365d51ab888a9c5d22d39ea9fa /lua/nv-lspkind/init.lua
parent0b76e8f7b49b608b1dc1f9c4f014f7a087fb9e62 (diff)
lspkind
Diffstat (limited to 'lua/nv-lspkind/init.lua')
-rw-r--r--lua/nv-lspkind/init.lua26
1 files changed, 26 insertions, 0 deletions
diff --git a/lua/nv-lspkind/init.lua b/lua/nv-lspkind/init.lua
new file mode 100644
index 00000000..e3c590fc
--- /dev/null
+++ b/lua/nv-lspkind/init.lua
@@ -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 = '  '
+ },
+})