mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Add auto-changing colors for Neovim (#1712)
* 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>
This commit is contained in:
@@ -3,12 +3,9 @@ return {
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
require("catppuccin").setup({
|
||||
flavour = "latte", -- other options: "mocha", "frappe", "macchiato"
|
||||
})
|
||||
vim.cmd.colorscheme("catppuccin-latte")
|
||||
end,
|
||||
opts = {
|
||||
flavour = "latte",
|
||||
},
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
|
||||
@@ -1,4 +1,9 @@
|
||||
return {
|
||||
{
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
priority = 1000,
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
|
||||
@@ -1,9 +1,13 @@
|
||||
return {
|
||||
"ribru17/bamboo.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
require("bamboo").setup({})
|
||||
require("bamboo").load()
|
||||
end,
|
||||
{
|
||||
"ribru17/bamboo.nvim",
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "bamboo",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -1,31 +1,14 @@
|
||||
return {
|
||||
{
|
||||
"gthelding/monokai-pro.nvim",
|
||||
config = function()
|
||||
require("monokai-pro").setup({
|
||||
filter = "ristretto",
|
||||
override = function()
|
||||
return {
|
||||
NonText = { fg = "#948a8b" },
|
||||
MiniIconsGrey = { fg = "#948a8b" },
|
||||
MiniIconsRed = { fg = "#fd6883" },
|
||||
MiniIconsBlue = { fg = "#85dacc" },
|
||||
MiniIconsGreen = { fg = "#adda78" },
|
||||
MiniIconsYellow = { fg = "#f9cc6c" },
|
||||
MiniIconsOrange = { fg = "#f38d70" },
|
||||
MiniIconsPurple = { fg = "#a8a9eb" },
|
||||
MiniIconsAzure = { fg = "#a8a9eb" },
|
||||
MiniIconsCyan = { fg = "#85dacc" }, -- same value as MiniIconsBlue for consistency
|
||||
}
|
||||
end,
|
||||
})
|
||||
vim.cmd([[colorscheme monokai-pro]])
|
||||
end,
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "monokai-pro",
|
||||
},
|
||||
},
|
||||
{
|
||||
"loctvl842/monokai-pro.nvim",
|
||||
opts = {
|
||||
filter = "ristretto",
|
||||
},
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "monokai-pro",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
@@ -1,8 +1,12 @@
|
||||
return {
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
priority = 1000,
|
||||
},
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "tokyonight",
|
||||
colorscheme = "tokyonight-night",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user