summaryrefslogtreecommitdiff
path: root/lua/mo/kinds.lua
diff options
context:
space:
mode:
authorMohammad Reza Karimi <m.r.karimi.j@gmail.com>2026-01-20 15:55:27 -0500
committerMohammad Reza Karimi <m.r.karimi.j@gmail.com>2026-01-20 15:55:27 -0500
commitaa5717f00fd14430c80939a68d7107c26de6e554 (patch)
tree784e99d9b018e0554369c41cb33e2e195e28d3c6 /lua/mo/kinds.lua
first commit
Diffstat (limited to 'lua/mo/kinds.lua')
-rw-r--r--lua/mo/kinds.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/lua/mo/kinds.lua b/lua/mo/kinds.lua
new file mode 100644
index 0000000..b6d7814
--- /dev/null
+++ b/lua/mo/kinds.lua
@@ -0,0 +1,27 @@
+return {
+ Text = "Text",
+ Method = "Meth",
+ Function = "Func",
+ Constructor = "Cons",
+ Field = "Fld",
+ Variable = "Var",
+ Class = "Cls",
+ Interface = "Ifs",
+ Module = "Mod",
+ Property = "Prop",
+ Unit = "Unit",
+ Value = "Val",
+ Enum = "Enum",
+ Keyword = "Keyw",
+ Snippet = "Snp",
+ Color = "Col",
+ File = "File",
+ Reference = "Ref",
+ Folder = "Fold",
+ EnumMember = "EnMe",
+ Constant = "Cnst",
+ Struct = "Stru",
+ Event = "Ev",
+ Operator = "Op",
+ TypeParameter = "Typ",
+}