diff options
author | kylo252 <[email protected]> | 2021-10-03 16:13:46 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-03 16:13:46 +0200 |
commit | d01ba08eaec1640ac2d038893525b3ba0af25813 (patch) | |
tree | 5edf2f5a12cedacb32f0c5d45ec2d999dacb99cd /lua/lsp/kind.lua | |
parent | 3e1cd1ec235404ae96ed2d0756729cf44ae48f3e (diff) |
refactor: auto-generate language configuration (#1584)
Refactor the monolithic `lvim.lang` design into a more modular approach.
IMPORTANT: run `:LvimUpdate` in order to generate the new ftplugin template files.
Diffstat (limited to 'lua/lsp/kind.lua')
-rw-r--r-- | lua/lsp/kind.lua | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/lua/lsp/kind.lua b/lua/lsp/kind.lua deleted file mode 100644 index b78fd318..00000000 --- a/lua/lsp/kind.lua +++ /dev/null @@ -1,31 +0,0 @@ -local M = {} - -M.icons = { - Class = "ī ", - Color = "îĢ ", - Constant = "ī˛ ", - Constructor = "īĨ ", - Enum = "īŠ", - EnumMember = "ī
", - Event = "ī§ ", - Field = "î ", - File = "ī", - Folder = "ī ", - Function = "ī ", - Interface = "ī°Ž ", - Keyword = "ī ", - Method = "î ", - Module = "ī¨ ", - Operator = "ī", - Property = "î¤ ", - Reference = "ī ", - Snippet = "ī ", - Struct = "ī ", - Text = "īž ", - TypeParameter = "ī ", - Unit = "īĨŦ", - Value = "īĸ ", - Variable = "īĻ ", -} - -return M |