New color scheme

This commit is contained in:
2026-01-10 19:39:43 -05:00
parent a778c40896
commit 978d702ee6
3 changed files with 9 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
config = function()
vim.cmd[[colorscheme tokyonight-storm]]
end
}

View File

@@ -1,17 +0,0 @@
-- lua/plugins/rose-pine.lua
return {
"rose-pine/neovim",
name = "rose-pine",
config = function()
require("rose-pine").setup({
highlight_groups = {
StatusLine = { fg = "love", bg = "love", blend = 10 },
StatusLineNC = { fg = "subtle", bg = "surface" },
},
})
vim.cmd("colorscheme rose-pine")
end
}