From ee7576abe3cba07dfe30f1bbe2281550503a4e05 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Tue, 20 May 2025 18:48:55 -0700 Subject: [PATCH] Update nvim theme to include opacity --- nvim/lua/plugins/theme.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nvim/lua/plugins/theme.lua b/nvim/lua/plugins/theme.lua index 4371961..2fe79eb 100644 --- a/nvim/lua/plugins/theme.lua +++ b/nvim/lua/plugins/theme.lua @@ -4,7 +4,11 @@ return { lazy = false, -- make sure we load this during startup if it is your main colorscheme priority = 1000, -- make sure to load this before all the other start plugins config = function() - require('github-theme').setup({}) + require('github-theme').setup({ + options = { + transparent = true + } + }) vim.cmd('colorscheme github_dark_default') end, }