From 7f1a3b82daf846d6bc350ab2304469474371705c Mon Sep 17 00:00:00 2001 From: anth64 Date: Tue, 15 Apr 2025 19:29:43 +0200 Subject: [PATCH] add colorschemes, default to moonfly --- lua/plugins/visual.lua | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/lua/plugins/visual.lua b/lua/plugins/visual.lua index b92e566..90579ce 100644 --- a/lua/plugins/visual.lua +++ b/lua/plugins/visual.lua @@ -4,8 +4,17 @@ return { dependencies = { "nvim-tree/nvim-web-devicons" }, lazy = false, config = function() - require("lualine").setup() + require("lualine").setup() end, - } + }, + { + "bluz71/vim-moonfly-colors", + lazy = false, + config = function() + vim.cmd.colorscheme("moonfly") + end, + }, + { "EdenEast/nightfox.nvim", lazy = false }, + { "oxfist/night-owl.nvim", lazy = false }, }