77 lines
2.5 KiB
Lua
77 lines
2.5 KiB
Lua
return {
|
|
{ "rose-pine/neovim", name = "rose-pine" },
|
|
{ "L-Colombo/oldschool.nvim", config = "true" },
|
|
{ "ptdewey/darkearth-nvim" },
|
|
{
|
|
"tiagovla/tokyodark.nvim",
|
|
opts = {
|
|
terminal_colors = true, -- enable terminal colors
|
|
transparent_background = false, -- set background to transparent
|
|
gamma = 0.90, -- adjust the brightness of the theme
|
|
styles = {
|
|
comments = { italic = false }, -- style for comments
|
|
keywords = { italic = true }, -- style for keywords
|
|
identifiers = { italic = true }, -- style for identifiers
|
|
variables = { bold = true }, -- style for variables
|
|
functions = {}, -- style for functions
|
|
},
|
|
custom_highlights = {} or function(highlights, palette)
|
|
return {}
|
|
end, -- extend highlights
|
|
custom_palette = {} or function(palette)
|
|
return {}
|
|
end, -- extend palette
|
|
},
|
|
},
|
|
{
|
|
"neko-night/nvim",
|
|
lazy = false,
|
|
-- priority = 1000,
|
|
opts = {
|
|
transparent = false, -- Enable this to disable setting the background color
|
|
terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim
|
|
styles = {
|
|
-- Style to be applied to different syntax groups
|
|
-- Value is any valid attr-list value for `:help nvim_set_hl`
|
|
comments = { italic = true },
|
|
keywords = { italic = true },
|
|
functions = { bold = true },
|
|
variables = { bold = true },
|
|
-- Background styles. Can be "dark", "transparent" or "normal"
|
|
sidebars = "dark", -- style for sidebars, see below
|
|
floats = "dark", -- style for floating windows
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"scottmckendry/cyberdream.nvim",
|
|
name = "cyberdream",
|
|
lazy = false,
|
|
opts = {
|
|
transparent = false,
|
|
hide_fillchars = true,
|
|
terminal_colors = true,
|
|
},
|
|
},
|
|
{
|
|
"ribru17/bamboo.nvim",
|
|
opts = {
|
|
-- ────────────────────────────< optional configuration here >─────────────────────────
|
|
code_style = {
|
|
comments = { italic = false, bold = true },
|
|
conditionals = { italic = true },
|
|
keywords = { bold = true },
|
|
functions = {},
|
|
namespaces = { italic = true },
|
|
parameters = { italic = true },
|
|
strings = {},
|
|
variables = { bold = true },
|
|
},
|
|
-- ─< Custom Highlights -- >────────────────────────────────────────────────────────────
|
|
colors = {}, -- Override default colors
|
|
highlights = { -- Override highlight groups
|
|
["@comment"] = { fg = "#555653" },
|
|
},
|
|
},
|
|
},
|
|
}
|