mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +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
|
@ -9,6 +9,7 @@ with lib; {
|
|||
enable = mkDefault false;
|
||||
name = mkDefault "onedark";
|
||||
style = mkDefault "darker";
|
||||
transparent = mkDefault false;
|
||||
extraConfig = mkDefault "";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
{lib}: {
|
||||
onedark = {
|
||||
setup = {style ? "dark"}: ''
|
||||
-- OneDark theme
|
||||
|
@ -20,11 +20,14 @@
|
|||
};
|
||||
|
||||
catppuccin = {
|
||||
setup = {style ? "mocha"}: ''
|
||||
setup = {
|
||||
style ? "mocha",
|
||||
transparent ? false,
|
||||
}: ''
|
||||
-- Catppuccin theme
|
||||
require('catppuccin').setup {
|
||||
flavour = "${style}",
|
||||
transparent_background = true,
|
||||
transparent_background = "${builtins.toString transparent}",
|
||||
integrations = {
|
||||
nvimtree = {
|
||||
enabled = true,
|
||||
|
|
|
@ -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…
Reference in a new issue