diff --git a/init.lua b/init.lua index f63a3e4..4efc920 100644 --- a/init.lua +++ b/init.lua @@ -6,4 +6,4 @@ require("pika.lazy") -- │ themes are under ./lua/pika/plugins/colorschemes.lua │ -- ╰──────────────────────────────────────────────────────╯ -vim.cmd.colorscheme("cyberdream") +vim.cmd.colorscheme("zephyr") diff --git a/lua/pika/core/options.lua b/lua/pika/core/options.lua index 03c2da1..6f258b0 100644 --- a/lua/pika/core/options.lua +++ b/lua/pika/core/options.lua @@ -73,7 +73,8 @@ vim.cmd([[ ]]) 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_refresh_rate = 90 vim.g.neovide_cursor_vfx_mode = "torpedo" diff --git a/lua/pika/plugins/colorschemes.lua b/lua/pika/plugins/colorschemes.lua index 0543597..7e8978c 100644 --- a/lua/pika/plugins/colorschemes.lua +++ b/lua/pika/plugins/colorschemes.lua @@ -6,8 +6,23 @@ return { { "eldritch-theme/eldritch.nvim" }, { "sainnhe/sonokai" }, { "samharju/synthweave.nvim" }, - { "glepnir/zephyr-nvim" }, - { "xero/miasma.nvim" }, + { "66RING/zephyr-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", name = "cyberdream",