diff --git a/config/.config/ghostty/config b/config/.config/ghostty/config index e900428..76c7c8c 100644 --- a/config/.config/ghostty/config +++ b/config/.config/ghostty/config @@ -15,7 +15,7 @@ font-size = 14 font-thicken = true # font-variation = wdth=100 # theme = light:xcodelight,dark:xcodedark -theme = light:nord-light,dark:nord +theme = light:dawnfox,dark:carbonfox # theme = Monokai Classic # window-decoration = false # gtk-adwaita = false diff --git a/config/.config/nvim/lua/config/lazy.lua b/config/.config/nvim/lua/config/lazy.lua index 0a8aebb..a7701c6 100644 --- a/config/.config/nvim/lua/config/lazy.lua +++ b/config/.config/nvim/lua/config/lazy.lua @@ -29,7 +29,7 @@ require("lazy").setup({ }, -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "nord" } }, + -- install = { colorscheme = { "nord" } }, -- automatically check for plugin updates checker = { enabled = false, notify = false }, }) diff --git a/config/.config/nvim/lua/config/set.lua b/config/.config/nvim/lua/config/set.lua index 0e8ec90..19b55cd 100644 --- a/config/.config/nvim/lua/config/set.lua +++ b/config/.config/nvim/lua/config/set.lua @@ -65,7 +65,7 @@ vim.g.netrw_alto = 0 vim.ui.select = Snacks.picker.select -vim.cmd('colorscheme nord') +-- vim.cmd('colorscheme carbonfox') vim.lsp.config('lua_ls', { settings = { diff --git a/config/.config/nvim/lua/plugins/colors.lua b/config/.config/nvim/lua/plugins/colors.lua index 366ee81..cf5c2c8 100644 --- a/config/.config/nvim/lua/plugins/colors.lua +++ b/config/.config/nvim/lua/plugins/colors.lua @@ -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' }