Skip to content

Commit

Permalink
feat: barbecue
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmx03 committed Dec 15, 2023
1 parent 31a5f5e commit 8062711
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions lua/barbecue/theme/solarized.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
local c = require('solarized.palette').get_colors()

local M = {
separator = { fg = c.green },
dirname = { link = 'Directory' },

context_file = { fg = c.base0 },
context_module = { link = '@namespace' },
context_namespace = { link = '@namespace' },
context_package = { link = 'Directory' },
context_class = { link = 'Type' },
context_method = { link = 'Function' },
context_property = { link = '@field' },
context_field = { link = '@field' },
context_constructor = { link = '@constructor' },
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 = '@field' },
context_key = { link = 'Delimiter' },
context_null = { link = 'Constant' },
context_enum_member = { link = 'Constant' },
context_struct = { link = 'Structure' },
context_event = { fg = c.base2 },
context_operator = { link = 'Operator' },
context_type_parameter = { link = 'Type' },
}

return M

0 comments on commit 8062711

Please sign in to comment.