Change theme to moonfly

This commit is contained in:
2023-12-17 23:23:47 +01:00
parent aa415ec76c
commit 8ccb9684f5
5 changed files with 61 additions and 83 deletions
+8 -4
View File
@@ -18,11 +18,11 @@ vim.loader.enable()
local plugins = {
{
"catppuccin/nvim",
"bluz71/vim-moonfly-colors",
priority = 1000,
lazy = false,
name = "catppuccin",
config = require("plugins.catppuccin"),
name = "moonfly",
config = require("plugins.moonfly"),
},
{
"rcarriga/nvim-notify",
@@ -236,6 +236,10 @@ local plugins = {
},
}
local opts = {}
local opts = {
install = {
colorscheme = { "moonfly" }
}
}
require("lazy").setup(plugins, opts)