mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-10 15:35:30 +00:00
dev(theme): disable transparency support by default
This commit is contained in:
parent
6daf32df1d
commit
158a74e00d
3 changed files with 14 additions and 4 deletions
|
|
@ -7,7 +7,7 @@ with lib;
|
|||
with lib.attrsets;
|
||||
with builtins; let
|
||||
cfg = config.vim.theme;
|
||||
supported_themes = import ./supported_themes.nix;
|
||||
supported_themes = import ./supported_themes.nix {inherit lib;};
|
||||
in {
|
||||
options.vim.theme = {
|
||||
enable = mkOption {
|
||||
|
|
@ -25,6 +25,12 @@ in {
|
|||
description = "Specific style for theme if it supports it";
|
||||
};
|
||||
|
||||
transparent = mkOption {
|
||||
type = with types; bool;
|
||||
default = false;
|
||||
description = "Whether or not transparency should be enabled. Has no effect for themes that do not support transparency";
|
||||
};
|
||||
|
||||
extraConfig = mkOption {
|
||||
type = with types; lines;
|
||||
description = "Additional lua configuration to add before setup";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue