moonfly color scheme

This commit is contained in:
2026-03-24 22:04:39 +02:00
parent 734d4a095a
commit 46ad0970a2
3 changed files with 12 additions and 5 deletions
+10 -2
View File
@@ -1,13 +1,21 @@
return {
{ "nvim-tree/nvim-web-devicons", lazy = true },
{
"bluz71/vim-moonfly-colors",
name = "moonfly",
lazy = false,
priority = 1000,
config = function()
vim.cmd.colorscheme("moonfly")
end,
},
-- Statusline
{
"nvim-lualine/lualine.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
require("lualine").setup({
options = { theme = "codedark", globalstatus = true },
options = { theme = "auto", globalstatus = true },
})
end,
},