diff options
Diffstat (limited to '.vim/lua/lsp.lua')
| -rw-r--r-- | .vim/lua/lsp.lua | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.vim/lua/lsp.lua b/.vim/lua/lsp.lua index 530a49e..84ba548 100644 --- a/.vim/lua/lsp.lua +++ b/.vim/lua/lsp.lua @@ -260,6 +260,43 @@ local format = function(afile) end end +local symbols = { + -- + Array = ' ', + Boolean = ' ', + Class = ' ', + Color = ' ', + Constant = ' ', + Constructor = ' ', + Enum = ' ', + EnumMember = ' ', + Event = ' ', + -- Field = ' ', + Field = ' ', + File = ' ', + Folder = ' ', + Function = ' ', + Interface = ' ', + Key = ' ', + Keyword = ' ', + Method = ' ', + Module = ' ', + Namespace = ' ', + Null = ' ', + Object = ' ', + Operator = ' ', + Property = ' ', + Package = ' ', + Reference = ' ', + Snippet = ' ', + Struct = ' ', + Text = ' ', + TypeParameter = ' ', + Unit = ' ', + Value = ' ', + Variable = ' ', +} + return { my_attach = my_attach, my_exit = my_exit, |