Skip to content

Commit 8693b55

Browse files
author
MysterieDev
committed
dark-theme
1 parent a0898be commit 8693b55

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

init.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,8 @@ require('lazy').setup({
776776
vim.cmd.colorscheme 'gruvbox'
777777

778778
-- You can configure highlights by doing something like:
779-
vim.o.background = 'light' -- or "light" for light mode
779+
vim.o.background = 'dark' -- or "light" for light mode
780+
-- vim.o.background = 'light' -- or "light" for light mode
780781
-- vim.cmd [[colorscheme catppuccin-macchiato]]
781782
end,
782783
},

lua/custom/plugins/airline.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ return {
55
},
66
init = function()
77
vim.g.airline_powerline_fonts = 1
8-
vim.g.airline_theme = 'bubblegum'
8+
-- vim.g.airline_theme = 'bubblegum'
9+
vim.g.airline_theme = 'base16_gruvbox_dark_soft'
910
end, -- Lazy load the configuration when vim-airline is loaded
1011
}

0 commit comments

Comments
 (0)