dark-theme

This commit is contained in:
MysterieDev 2024-04-24 10:59:09 +02:00
parent a0898bea1f
commit 8693b55d3f
2 changed files with 4 additions and 2 deletions

View File

@ -776,7 +776,8 @@ require('lazy').setup({
vim.cmd.colorscheme 'gruvbox'
-- You can configure highlights by doing something like:
vim.o.background = 'light' -- or "light" for light mode
vim.o.background = 'dark' -- or "light" for light mode
-- vim.o.background = 'light' -- or "light" for light mode
-- vim.cmd [[colorscheme catppuccin-macchiato]]
end,
},

View File

@ -5,6 +5,7 @@ return {
},
init = function()
vim.g.airline_powerline_fonts = 1
vim.g.airline_theme = 'bubblegum'
-- vim.g.airline_theme = 'bubblegum'
vim.g.airline_theme = 'base16_gruvbox_dark_soft'
end, -- Lazy load the configuration when vim-airline is loaded
}