Chris 4 vuotta sitten
vanhempi
commit
16b711d9b0
1 muutettua tiedostoa jossa 26 lisäystä ja 0 poistoa
  1. 26 0
      lua/nv-lspkind/init.lua

+ 26 - 0
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 = '  '
+    },
+})