Update to neovim and ghostty theme

This commit is contained in:
Michael Chalupiak
2025-09-24 18:22:28 -04:00
parent 93361624d7
commit 367244a53d
4 changed files with 25 additions and 3 deletions

View File

@@ -137,5 +137,27 @@ return {
lazy = true,
},
{
"EdenEast/nightfox.nvim",
priority = 1000,
lazy = true,
},
{
"f-person/auto-dark-mode.nvim",
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
set_dark_mode = function()
vim.api.nvim_set_option_value("background", "dark", {})
vim.cmd('colorscheme carbonfox')
end,
set_light_mode = function()
vim.api.nvim_set_option_value("background", "light", {})
vim.cmd('colorscheme dawnfox')
end,
},
},
-- use 'xiyaowong/transparent.nvim'
}