uloco/bluloco.nvim

Won't work with lazy package manage

Jezda1337 opened this issue · 1 comments

Here is the lazy.nvim config for the theme:

	{
		"uloco/bluloco.nvim",
		lazy = false,
		priority = 1000,
		dependencies = { "rktjmp/lush.nvim" },
		config = function()
			require("bluloco").setup({
				style = "auto", -- "auto" | "dark" | "light"
				transparent = false,
				italics = false,
				terminal = vim.fn.has("gui_running") == 1, -- bluoco colors are enabled in gui terminals per default.
			})
			vim.cmd([[colorscheme bluloco]])
		end,
	},
uloco commented

thank you so much, will add this to the docs.