This module provides support for managing and switching between multiple colorschemes for Neovim. The current supported themes are:
Colorscheme | Description |
---|---|
tokyonight | A clean, dark Neovim theme written in Lua. |
tokyodark | A darker alternative for a modern look. |
To set your preferred colorscheme, add the following configuration:
# In your Nix configuration
colorscheme = "<name>"; # Replace <name> with "tokyonight" or "tokyodark"
colorscheme = "tokyonight";
Note: The
colorscheme
key allows you to set the active theme.
Colorscheme | Repository URL |
---|---|
tokyonight | tokyonight.nvim |
tokyodark | tokyodark.nvim |
Note:
tokyodark
requires an additional input in your Nix flake:
# Add this input for tokyodark
inputs.tokyodark = {
url = "github:tiagovla/tokyodark.nvim";
flake = false;
};
- Preconfigured colorschemes for quick setup.
- Easily switch between themes by updating the
colorscheme
key. - Modern and visually appealing designs for Neovim.
This is same for tokyonight and tokyodark