From 11bdbf99425ec02c8902847676fa1591058343c7 Mon Sep 17 00:00:00 2001 From: MikeG Date: Sat, 14 Sep 2024 21:42:33 -0400 Subject: [PATCH] added some options to tokyonight --- .config/nvim/lua/plugins/theme.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.config/nvim/lua/plugins/theme.lua b/.config/nvim/lua/plugins/theme.lua index 03bb50e..24a4e39 100644 --- a/.config/nvim/lua/plugins/theme.lua +++ b/.config/nvim/lua/plugins/theme.lua @@ -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,