Change back to a working config #1

Open
th3r00t wants to merge 16 commits from New-Master into master
Showing only changes of commit f0cd5945e1 - Show all commits

View File

@@ -34,43 +34,45 @@ local function cyberdream()
-- Improve start up time by caching highlights. Generate cache with :CyberdreamBuildCache and clear with :CyberdreamClearCache -- Improve start up time by caching highlights. Generate cache with :CyberdreamBuildCache and clear with :CyberdreamClearCache
cache = false, cache = false,
-- Override highlight groups with your own colour values -- Override highlight groups with your own colour values
highlights = { -- highlights = {
-- Highlight groups to override, adding new groups is also possible -- -- Highlight groups to override, adding new groups is also possible
-- See `:h highlight-groups` for a list of highlight groups or run `:hi` to see all groups and their current values -- -- See `:h highlight-groups` for a list of highlight groups or run `:hi` to see all groups and their current values
-- Example: -- -- Example:
Comment = { fg = "#696969", bg = "NONE", italic = true }, -- Comment = { fg = "#696969", bg = "NONE", italic = true },
-- More examples can be found in `lua/cyberdream/extensions/*.lua` -- -- More examples can be found in `lua/cyberdream/extensions/*.lua`
}, -- },
-- Override a highlight group entirely using the built-in colour palette -- Override a highlight group entirely using the built-in colour palette
overrides = function(colors) -- NOTE: This function nullifies the `highlights` option -- overrides = function(colors) -- NOTE: This function nullifies the `highlights` option
-- Example: -- -- Example:
return { -- return {
Comment = { fg = colors.green, bg = "NONE", italic = true }, -- Comment = { fg = colors.green, bg = "NONE", italic = true },
["@property"] = { fg = colors.magenta, bold = true }, -- ["@property"] = { fg = colors.magenta, bold = true },
} -- }
end, -- end,
-- Override colors -- Override colors
colors = { -- colors = {
-- For a list of colors see `lua/cyberdream/colours.lua` -- -- For a list of colors see `lua/cyberdream/colours.lua`
-- Override colors for both light and dark variants -- -- Override colors for both light and dark variants
bg = "#000000", -- bg = "#000000",
green = "#00ff00", -- green = "#00ff00",
-- If you want to override colors for light or dark variants only, use the following format: -- -- If you want to override colors for light or dark variants only, use the following format:
dark = { -- dark = {
magenta = "#ff00ff", -- magenta = "#ff00ff",
fg = "#eeeeee", -- fg = "#eeeeee",
}, -- },
light = { -- light = {
red = "#ff5c57", -- red = "#ff5c57",
cyan = "#5ef1ff", -- cyan = "#5ef1ff",
}, -- },
}, -- },
-- Disable or enable colorscheme extensions -- Disable or enable colorscheme extensions
-- extensions = { extensions = {
-- telescope = true, telescope = true,
-- notify = true, notify = true,
-- mini = true, mini = true,
-- } treesitter = true,
-- More extensions can be found in `lua/cyberdream/extensions/*.lua`
}
}) })
end end