fix: use correct colorscheme name monokai_soda
All checks were successful
Luacheck / luacheck (push) Successful in 11s
StyLua / stylua (push) Successful in 2s

This commit is contained in:
Jeremie Fraeys 2026-02-08 15:54:54 -05:00
parent ecb3452195
commit abb911f660
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ vim.g.loaded_netrwSettings = 1
vim.g.loaded_netrwFileHandlers = 1
-- Set colorscheme early to prevent startup flash
vim.cmd('colorscheme monokai')
vim.cmd('colorscheme monokai_soda')
-- Install package manager
-- https://github.com/folke/lazy.nvim

View file

@ -50,7 +50,7 @@ return {
update_interval = 2000,
set_dark_mode = function()
vim.api.nvim_set_option_value('background', 'dark', {})
vim.cmd('colorscheme monokai')
vim.cmd('colorscheme monokai_soda')
-- Apply custom highlight settings for Monokai
set_lsp_highlights('dark')