How to stop tokyonight.nvim from loading? #1344
-
How to stop the theme 'tokyonight.nvim' from loading? I installed the theme 'everforest' to match my other desktop theming, and it looks great. The problem is the 'tokyonight' theme still loads. Where do I set it to false, if possible? I added a separate file to load the 'everforest' theme. under plugins. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
under your plugins directory create a new lua file: return {
"folke/tokyonight.nvim",
enabled = false,
} |
Beta Was this translation helpful? Give feedback.
-
It worked Thank you |
Beta Was this translation helpful? Give feedback.
-
Well, now I'm getting an error. When Neovim starts. 'Could not load your colorscheme tokyonight' with a huge paragraph of data as to why I guess. It did disable the tokyonight colorscheme, but at start up, Neovim is complaining, as if it needs to be removed from another file. |
Beta Was this translation helpful? Give feedback.
-
Excellent! That worked with no error. Thank you for all your responses and code. I appreciate it. |
Beta Was this translation helpful? Give feedback.
you can do it in one file or in multiples file whatever you prefer, for example in
~/.config/nvim/lua/plugins/colorscheme.lua