Compare commits
No commits in common. "ead25405028614cea39e3448229b1ee6c9299ca9" and "c795da7aef3c9308abbdeab536db59797bb00d51" have entirely different histories.
ead2540502
...
c795da7aef
2 changed files with 68 additions and 85 deletions
2
init.lua
2
init.lua
|
@ -9,5 +9,5 @@ else
|
||||||
-- │ themes are under ./lua/pika/plugins/colorschemes.lua │
|
-- │ themes are under ./lua/pika/plugins/colorschemes.lua │
|
||||||
-- ╰──────────────────────────────────────────────────────╯
|
-- ╰──────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
vim.cmd.colorscheme("tokyonight")
|
vim.cmd.colorscheme("rose-pine-moon")
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
return {
|
return {
|
||||||
{ "folke/tokyonight.nvim" },
|
-- { "folke/tokyonight.nvim" },
|
||||||
{ "catppuccin/nvim", name = "catppuccin" },
|
{ "catppuccin/nvim", name = "catppuccin" },
|
||||||
{ "EdenEast/nightfox.nvim" },
|
{ "EdenEast/nightfox.nvim" },
|
||||||
{ "fynnfluegge/monet.nvim", name = "monet" },
|
{ "fynnfluegge/monet.nvim", name = "monet" },
|
||||||
|
@ -10,94 +10,77 @@ return {
|
||||||
{ "samharju/synthweave.nvim" },
|
{ "samharju/synthweave.nvim" },
|
||||||
{ "ptdewey/darkearth-nvim" },
|
{ "ptdewey/darkearth-nvim" },
|
||||||
{
|
{
|
||||||
"wtfox/jellybeans.nvim",
|
"AstroNvim/astrotheme",
|
||||||
lazy = false,
|
|
||||||
opts = {
|
opts = {
|
||||||
style = "dark", -- "dark" or "light"
|
{
|
||||||
transparent = false,
|
palette = "astrodark", -- String of the default palette to use when calling `:colorscheme astrotheme`
|
||||||
italics = true,
|
background = { -- :h background, palettes to use when using the core vim background colors
|
||||||
flat_ui = true, -- toggles "flat UI" for pickers
|
light = "astrolight",
|
||||||
palette = nil, -- specify a palette variant: nil (default/"vibrant") or "jellybeans_muted"
|
dark = "astrodark",
|
||||||
plugins = {
|
},
|
||||||
all = false,
|
|
||||||
auto = true, -- will read lazy.nvim and apply the colors for plugins that are installed
|
style = {
|
||||||
|
transparent = false, -- Bool value, toggles transparency.
|
||||||
|
inactive = true, -- Bool value, toggles inactive window color.
|
||||||
|
float = true, -- Bool value, toggles floating windows background colors.
|
||||||
|
neotree = true, -- Bool value, toggles neo-trees background color.
|
||||||
|
border = true, -- Bool value, toggles borders.
|
||||||
|
title_invert = true, -- Bool value, swaps text and background colors.
|
||||||
|
italic_comments = true, -- Bool value, toggles italic comments.
|
||||||
|
simple_syntax_colors = true, -- Bool value, simplifies the amounts of colors used for syntax highlighting.
|
||||||
|
},
|
||||||
|
|
||||||
|
termguicolors = true, -- Bool value, toggles if termguicolors are set by AstroTheme.
|
||||||
|
|
||||||
|
terminal_color = true, -- Bool value, toggles if terminal_colors are set by AstroTheme.
|
||||||
|
|
||||||
|
plugin_default = "auto", -- Sets how all plugins will be loaded
|
||||||
|
-- "auto": Uses lazy / packer enabled plugins to load highlights.
|
||||||
|
-- true: Enables all plugins highlights.
|
||||||
|
-- false: Disables all plugins.
|
||||||
|
|
||||||
|
plugins = { -- Allows for individual plugin overrides using plugin name and value from above.
|
||||||
|
["bufferline.nvim"] = false,
|
||||||
|
},
|
||||||
|
|
||||||
|
palettes = {
|
||||||
|
global = { -- Globally accessible palettes, theme palettes take priority.
|
||||||
|
my_grey = "#ebebeb",
|
||||||
|
my_color = "#ffffff",
|
||||||
|
},
|
||||||
|
astrodark = { -- Extend or modify astrodarks palette colors
|
||||||
|
ui = {
|
||||||
|
red = "#800010", -- Overrides astrodarks red UI color
|
||||||
|
accent = "#CC83E3", -- Changes the accent color of astrodark.
|
||||||
|
},
|
||||||
|
syntax = {
|
||||||
|
cyan = "#800010", -- Overrides astrodarks cyan syntax color
|
||||||
|
comments = "#CC83E3", -- Overrides astrodarks comment color.
|
||||||
|
},
|
||||||
|
my_color = "#000000", -- Overrides global.my_color
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
highlights = {
|
||||||
|
global = { -- Add or modify hl groups globally, theme specific hl groups take priority.
|
||||||
|
modify_hl_groups = function(hl, c)
|
||||||
|
hl.PluginColor4 = { fg = c.my_grey, bg = c.none }
|
||||||
|
end,
|
||||||
|
["@String"] = { fg = "#ff00ff", bg = "NONE" },
|
||||||
|
},
|
||||||
|
astrodark = {
|
||||||
|
-- first parameter is the highlight table and the second parameter is the color palette table
|
||||||
|
modify_hl_groups = function(hl, c) -- modify_hl_groups function allows you to modify hl groups,
|
||||||
|
hl.Comment.fg = c.my_color
|
||||||
|
hl.Comment.italic = true
|
||||||
|
end,
|
||||||
|
["@String"] = { fg = "#ff00ff", bg = "NONE" },
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
-- on_highlights = function(highlights, colors) end,
|
|
||||||
-- on_colors = function(colors) end,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
-- {
|
-- {
|
||||||
-- "AstroNvim/astrotheme",
|
|
||||||
-- opts = {
|
|
||||||
-- {
|
|
||||||
-- palette = "astrodark", -- String of the default palette to use when calling `:colorscheme astrotheme`
|
|
||||||
-- background = { -- :h background, palettes to use when using the core vim background colors
|
|
||||||
-- light = "astrolight",
|
|
||||||
-- dark = "astrodark",
|
|
||||||
-- },
|
|
||||||
--
|
|
||||||
-- style = {
|
|
||||||
-- transparent = false, -- Bool value, toggles transparency.
|
|
||||||
-- inactive = true, -- Bool value, toggles inactive window color.
|
|
||||||
-- float = true, -- Bool value, toggles floating windows background colors.
|
|
||||||
-- neotree = true, -- Bool value, toggles neo-trees background color.
|
|
||||||
-- border = true, -- Bool value, toggles borders.
|
|
||||||
-- title_invert = true, -- Bool value, swaps text and background colors.
|
|
||||||
-- italic_comments = true, -- Bool value, toggles italic comments.
|
|
||||||
-- simple_syntax_colors = true, -- Bool value, simplifies the amounts of colors used for syntax highlighting.
|
|
||||||
-- },
|
|
||||||
--
|
|
||||||
-- termguicolors = true, -- Bool value, toggles if termguicolors are set by AstroTheme.
|
|
||||||
--
|
|
||||||
-- terminal_color = true, -- Bool value, toggles if terminal_colors are set by AstroTheme.
|
|
||||||
--
|
|
||||||
-- plugin_default = "auto", -- Sets how all plugins will be loaded
|
|
||||||
-- -- "auto": Uses lazy / packer enabled plugins to load highlights.
|
|
||||||
-- -- true: Enables all plugins highlights.
|
|
||||||
-- -- false: Disables all plugins.
|
|
||||||
--
|
|
||||||
-- plugins = { -- Allows for individual plugin overrides using plugin name and value from above.
|
|
||||||
-- ["bufferline.nvim"] = false,
|
|
||||||
-- },
|
|
||||||
--
|
|
||||||
-- palettes = {
|
|
||||||
-- global = { -- Globally accessible palettes, theme palettes take priority.
|
|
||||||
-- my_grey = "#ebebeb",
|
|
||||||
-- my_color = "#ffffff",
|
|
||||||
-- },
|
|
||||||
-- astrodark = { -- Extend or modify astrodarks palette colors
|
|
||||||
-- ui = {
|
|
||||||
-- red = "#800010", -- Overrides astrodarks red UI color
|
|
||||||
-- accent = "#CC83E3", -- Changes the accent color of astrodark.
|
|
||||||
-- },
|
|
||||||
-- syntax = {
|
|
||||||
-- cyan = "#800010", -- Overrides astrodarks cyan syntax color
|
|
||||||
-- comments = "#CC83E3", -- Overrides astrodarks comment color.
|
|
||||||
-- },
|
|
||||||
-- my_color = "#000000", -- Overrides global.my_color
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
--
|
|
||||||
-- highlights = {
|
|
||||||
-- global = { -- Add or modify hl groups globally, theme specific hl groups take priority.
|
|
||||||
-- modify_hl_groups = function(hl, c)
|
|
||||||
-- hl.PluginColor4 = { fg = c.my_grey, bg = c.none }
|
|
||||||
-- end,
|
|
||||||
-- ["@String"] = { fg = "#ff00ff", bg = "NONE" },
|
|
||||||
-- },
|
|
||||||
-- astrodark = {
|
|
||||||
-- -- first parameter is the highlight table and the second parameter is the color palette table
|
|
||||||
-- modify_hl_groups = function(hl, c) -- modify_hl_groups function allows you to modify hl groups,
|
|
||||||
-- hl.Comment.fg = c.my_color
|
|
||||||
-- hl.Comment.italic = true
|
|
||||||
-- end,
|
|
||||||
-- ["@String"] = { fg = "#ff00ff", bg = "NONE" },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- {
|
|
||||||
-- "ferdinandrau/lavish.nvim",
|
-- "ferdinandrau/lavish.nvim",
|
||||||
-- opts = {
|
-- opts = {
|
||||||
-- style = {
|
-- style = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue