10 lines
266 B
Lua

return {
"rebelot/kanagawa.nvim",
lazy = false, -- Ensure the plugin is loaded on startup
priority = 1000, -- Load this plugin first to apply the color scheme early
config = function()
-- Set the Kanagawa color scheme
vim.cmd("colorscheme kanagawa")
end,
}