diff options
| author | Robert Günzler <r@gnzler.io> | 2022-06-15 04:48:37 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-06-15 04:48:37 +0200 |
| commit | 81db33274b3119089873487a04a9ee00b1c4ea4f (patch) | |
| tree | 79bdcb775077be86aef6c9603113d2913c69776c /.vim/lua/lsp.lua | |
| parent | 844606b0c499926afa8a7f473433cd5b6bd73562 (diff) | |
vim: drop lspkind, vendor in symbol mapping
Diffstat (limited to '')
| -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, |