maxmx03.dracula.nvim/lua/barbecue/theme/dracula.lua
2024-02-26 09:02:07 -03:00

38 lines
1.3 KiB
Lua

local M = {
normal = {},
ellipsis = { link = 'Identifier' },
separator = { link = 'Keyword' },
modified = { link = 'DiffChange' },
dirname = { link = 'Directory' },
basename = { link = 'Identifier' },
context = { link = 'Identifier' },
context_file = { link = 'Identifier' },
context_module = { link = 'Identifier' },
context_namespace = { link = 'Identifier' },
context_package = { link = 'Directory' },
context_class = { link = 'Type' },
context_method = { link = 'Function' },
context_property = { link = 'Identifier' },
context_field = { link = 'Identifier' },
context_constructor = { link = 'Type' },
context_enum = { link = 'Type' },
context_interface = { link = 'Type' },
context_function = { link = 'Function' },
context_variable = { link = 'Identifier' },
context_constant = { link = 'Constant' },
context_string = { link = 'String' },
context_number = { link = 'Number' },
context_boolean = { link = 'Boolean' },
context_array = { link = 'Delimiter' },
context_object = { link = 'Identifier' },
context_key = { link = 'Delimiter' },
context_null = { link = 'Constant' },
context_enum_member = { link = 'Constant' },
context_struct = { link = 'Structure' },
context_event = { link = 'Function' },
context_operator = { link = 'Operator' },
context_type_parameter = { link = 'Type' },
}
return M