Skip to content

How to stop tokyonight.nvim from loading? #1344

Answered by moisesmorillo
jkemp814 asked this question in Q&A
Discussion options

You must be logged in to vote

you can do it in one file or in multiples file whatever you prefer, for example in
~/.config/nvim/lua/plugins/colorscheme.lua

return {
	{
		"LazyVim/LazyVim",
		opts = {
			colorscheme = "everforest",
		},
	},
	{
		"folke/tokyonight.nvim",
		enabled = false,
	},
	{
		"neanias/everforest-nvim",
		lazy = false,
		priority = 1000,
		opts = {},
		config = function()
			require("everforest").setup({
				background = "medium",
				transparent_background_level = 1,
				italics = true,
				disable_italic_comments = false,
				on_highlights = function(hl, _)
					hl["@symbol"] = { link = "@field" }
				end,
			})
		end,
	},
}

Replies: 4 comments 4 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
4 replies
@moisesmorillo
Comment options

@jkemp814
Comment options

@jkemp814
Comment options

@moisesmorillo
Comment options

Answer selected by jkemp814
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants