summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/_lspkind
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/_lspkind')
-rw-r--r--.config/nvim/lua/_lspkind/init.lua26
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/nvim/lua/_lspkind/init.lua b/.config/nvim/lua/_lspkind/init.lua
new file mode 100644
index 0000000..e3c590f
--- /dev/null
+++ b/.config/nvim/lua/_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 = '  '
+ },
+})