added some options to tokyonight

This commit is contained in:
Mike G 2024-09-14 21:42:33 -04:00
parent f6408d9d47
commit 11bdbf9942

View file

@ -5,7 +5,19 @@ return {
-- "shaunsingh/nord.nvim",
lazy = false, -- make sure we load this during the startup if its your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
opts = {
},
config = function()
require("tokyonight").setup({
style = "storm", -- storm, moon, night, day
light_style = "day",
transparent = true,
terminal_colors = true,
styles = {
sidebars = "transparent", -- dark, transparent, normal
floats = "transparent",
}
})
-- load the colorscheme here
vim.cmd([[colorscheme tokyonight]])
end,