nix-community.nixvim/tests/plugins/tokyonight.nix
traxys abc2d19a06
tests: Implement a way to test nixvim (#199)
The tests can be executed using `nix flake check`, they check that
modules can be built, and they execute in neovim without any errors.

This commit only implements tests for tokyonight-nvim upstream defaults
2023-02-28 23:39:55 +00:00

31 lines
778 B
Nix

{
# All the upstream default options of tokyonight
defaults = {
colorschemes.tokyonight = {
enable = true;
style = "storm";
# Not implemented
# lightStyle = "day";
transparent = false;
terminalColors = true;
styles = {
comments = {italic = true;};
keywords = {italic = true;};
functions = {};
variables = {};
sidebars = "dark";
floats = "dark";
};
sidebars = ["qf" "help"];
dayBrightness = 0.3;
hideInactiveStatusline = false;
dimInactive = false;
lualineBold = false;
# Not implemented
# onColors = {__raw = "function(colors) end";};
# Not implemented
# onHighlights = {__raw = "function(colors) end";};
};
};
}