mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
* Add MVP variant of nvim switcher * Update nvim configs * Remove config * Add migration for the new live themeing * Fix plugin * Remove theme * Update to actually work * Make it faster * Fix quirks --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
17 lines
200 B
Lua
17 lines
200 B
Lua
return {
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
opts = {
|
|
flavour = "latte",
|
|
},
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin-latte",
|
|
},
|
|
},
|
|
}
|