mirror of
https://github.com/maxmx03/dracula.nvim.git
synced 2026-09-10 07:26:19 -04:00
feat: barbecue
This commit is contained in:
parent
c717f28b96
commit
dfc0cf8644
37
lua/barbecue/theme/dracula.lua
Normal file
37
lua/barbecue/theme/dracula.lua
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
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
|
||||
Loading…
Reference in a new issue