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
+1 -2
View File
@@ -2,7 +2,6 @@ vim.g.mapleader = " "
vim.g.maplocalleader = " "
local opt = vim.opt
opt.number = true
opt.relativenumber = true
opt.signcolumn = "yes"
@@ -28,4 +27,4 @@ opt.mouse = "a"
opt.updatetime = 250
opt.timeoutlen = 400
vim.wo.fillchars = 'eob:·'
vim.wo.fillchars = 'eob: '
+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,
},