1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2024-12-27 02:49:47 +01:00
neovim-flake/modules/theme/config.nix
2023-02-02 00:01:35 +03:00

16 lines
227 B
Nix

{
pkgs,
config,
lib,
...
}:
with lib; {
config = {
vim.theme = {
enable = mkDefault false;
name = mkDefault "onedark";
style = mkDefault "darker";
extraConfig = mkDefault "";
};
};
}