summaryrefslogtreecommitdiff
path: root/lua/lsp/lsp-kind.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lsp/lsp-kind.lua')
-rw-r--r--lua/lsp/lsp-kind.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/lua/lsp/lsp-kind.lua b/lua/lsp/lsp-kind.lua
new file mode 100644
index 00000000..7ac3fefa
--- /dev/null
+++ b/lua/lsp/lsp-kind.lua
@@ -0,0 +1,27 @@
+-- commented options are defaults
+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 = '  '
+ },
+})
+