Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat] Allow easy configuration #1

Open
vihu opened this issue Oct 20, 2023 · 1 comment
Open

[Feat] Allow easy configuration #1

vihu opened this issue Oct 20, 2023 · 1 comment

Comments

@vihu
Copy link

vihu commented Oct 20, 2023

I am always on the lookout for nice dark/light themes. This one is extremely good and I love the minimalist look!

I just wanted to ask for easy configuration, typically the way we'd configure is like so (using bamboo theme as an example):

return {
	"ribru17/bamboo.nvim",
	lazy = false,
	enabled = true,
	cond = true,
	priority = 1000,
	config = function()
		require("bamboo").setup({
			transparent = true,
			dim_inactive = true,
			term_colors = true,
			code_style = {
				comments = "none",
				conditionals = "none",
				keywords = "none",
				functions = "none",
				strings = "none",
				variables = "none",
			},
			lualine = {
				transparent = true,
			},
			highlights = {
				["@comment"] = { fg = "$grey" },
			},
		})
		vim.o.background = "dark"
		require("bamboo").load()
	end,
}

It would be very useful if nano could support such configuration style.

@vihu vihu changed the title Allow easy configuration [Feat] Allow easy configuration Oct 20, 2023
@ronisbr
Copy link
Owner

ronisbr commented Oct 20, 2023

Thanks! Yes, it would be very nice to have.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants