From 6829dbbb06dfcba2c2e5c365dcd51b5a117ae7cd Mon Sep 17 00:00:00 2001 From: Devin Haska Date: Fri, 26 Apr 2024 17:00:15 -0600 Subject: [PATCH] feat: small tweak to colorscheme.lua --- lua/plugins/colorscheme.lua | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua index 890c312..790f129 100644 --- a/lua/plugins/colorscheme.lua +++ b/lua/plugins/colorscheme.lua @@ -1,8 +1,9 @@ return { - "folke/tokyonight.nvim", - lazy = true, - opts = { - transparent = true, - dim_inactive = true, - } + "folke/tokyonight.nvim", + lazy = true, + opts = { + style = "storm", + transparent = true, + dim_inactive = true, + }, }