mirror of
https://github.com/jessebot/dot_files.git
synced 2025-10-01 01:48:43 +00:00
45 lines
1.4 KiB
Lua
45 lines
1.4 KiB
Lua
require("barbecue").setup({
|
|
theme = {
|
|
normal = { bg = "NONE", fg = "#bdd8ff" },
|
|
|
|
ellipsis = { fg = "#585858" },
|
|
separator = { fg = "#585858" },
|
|
context_operator = { fg = "#fdcd36" },
|
|
|
|
modified = { fg = "#ff8d87" },
|
|
|
|
context = { fg = "#bdd8ff" },
|
|
basename = { fg = "#bdd8ff", bold = true },
|
|
context_file = { fg = "#bdd8ff" },
|
|
dirname = { fg = "#bdd8ff" },
|
|
|
|
context_null = { fg = "#585858" },
|
|
|
|
context_string = { fg = "#a8fd57" },
|
|
context_number = { fg = "#f7fb53" },
|
|
context_boolean = { fg = "#fdcd36" },
|
|
context_type_parameter = { fg = "#C1FF87" },
|
|
|
|
context_variable = { fg = "#2569aa" },
|
|
context_constant = { fg = "#2ac3de" },
|
|
context_property = { fg = "#5cc9fd" },
|
|
|
|
context_module = { fg = "#5f87ff" },
|
|
context_class = { fg = "#7aa2f7" },
|
|
context_function = { fg = "#3d59a1" },
|
|
context_method = { fg = "#6DF2E5" },
|
|
|
|
context_namespace = { fg = "#f7fb53" },
|
|
context_package = { fg = "#737aa2" },
|
|
context_field = { fg = "#a3a8f8" },
|
|
context_constructor = { fg = "#565f89" },
|
|
context_enum = { fg = "#f289f9" },
|
|
context_interface = { fg = "#fdcd36" },
|
|
context_array = { fg = "#7dcfff" },
|
|
context_object = { fg = "#d092fc" },
|
|
context_key = { fg = "#5cc9fd" },
|
|
context_enum_member = { fg = "#a8fd57 " },
|
|
context_struct = { fg = "#d092fc" },
|
|
context_event = { fg = "#ff8d87" },
|
|
}
|
|
})
|