Update to neovim and ghostty theme
This commit is contained in:
@@ -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'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user