addet some colorschemes

This commit is contained in:
pika 2024-09-12 10:54:30 +02:00
parent 7f58cd63bc
commit 9773e98393
3 changed files with 20 additions and 4 deletions

View file

@ -6,4 +6,4 @@ require("pika.lazy")
-- │ themes are under ./lua/pika/plugins/colorschemes.lua │ -- │ themes are under ./lua/pika/plugins/colorschemes.lua │
-- ╰──────────────────────────────────────────────────────╯ -- ╰──────────────────────────────────────────────────────╯
vim.cmd.colorscheme("cyberdream") vim.cmd.colorscheme("zephyr")

View file

@ -73,7 +73,8 @@ vim.cmd([[
]]) ]])
if vim.g.neovide then if vim.g.neovide then
vim.g.neovide_transparency = 0.35 -- vim.g.neovide_transparency = 0.35
vim.g.neovide_transparency = 1
vim.g.neovide_theme = "auto" vim.g.neovide_theme = "auto"
vim.g.neovide_refresh_rate = 90 vim.g.neovide_refresh_rate = 90
vim.g.neovide_cursor_vfx_mode = "torpedo" vim.g.neovide_cursor_vfx_mode = "torpedo"

View file

@ -6,8 +6,23 @@ return {
{ "eldritch-theme/eldritch.nvim" }, { "eldritch-theme/eldritch.nvim" },
{ "sainnhe/sonokai" }, { "sainnhe/sonokai" },
{ "samharju/synthweave.nvim" }, { "samharju/synthweave.nvim" },
{ "glepnir/zephyr-nvim" }, { "66RING/zephyr-nvim" },
{ "xero/miasma.nvim" }, { "savq/melange-nvim" },
{
"0xstepit/flow.nvim",
lazy = false,
opts = {},
config = function()
require("flow").setup({
dark_theme = true, -- Set the theme with dark background.
high_contrast = false, -- Make the dark background darker or the light background lighter.
transparent = false, -- Set transparent background.
fluo_color = "pink", -- Color used as fluo. Available values are pink, yellow, orange, or green.
mode = "desaturate", -- Mode of the colors. Available values are: dark, bright, desaturate, or base.
aggressive_spell = true, -- Use colors for spell check.
})
end,
},
{ {
"scottmckendry/cyberdream.nvim", "scottmckendry/cyberdream.nvim",
name = "cyberdream", name = "cyberdream",