From 7cc14c08ab4104ba2597a55350741ab47b6e6d32 Mon Sep 17 00:00:00 2001
From: khaneliman
programs.vivid.enable
+
+
+Whether to enable vivid.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/vivid.nix>
+
+ |
programs.vivid.enableBashIntegration
+
+
+Whether to enable Bash integration.
+ +Type: +boolean
+ +Default:
+home.shell.enableBashIntegration
Example:
+false
Declared by:
+
+
+<home-manager/modules/programs/vivid.nix>
+
+ |
programs.vivid.enableFishIntegration
+
+
+Whether to enable Fish integration.
+ +Type: +boolean
+ +Default:
+home.shell.enableFishIntegration
Example:
+false
Declared by:
+
+
+<home-manager/modules/programs/vivid.nix>
+
+ |
programs.vivid.enableZshIntegration
+
+
+Whether to enable Zsh integration.
+ +Type: +boolean
+ +Default:
+home.shell.enableZshIntegration
Example:
+false
Declared by:
+
+
+<home-manager/modules/programs/vivid.nix>
+
+ |
programs.vivid.package
+
+
+The vivid package to use.
+ +Type: +null or package
+ +Default:
+pkgs.vivid
Declared by:
+
+
+<home-manager/modules/programs/vivid.nix>
+
+ |
programs.vivid.activeTheme
+
+
+Active theme for vivid.
+ +Type: +null or string
+ +Default:
+null
Example:
+"molokai"
Declared by:
+
+
+<home-manager/modules/programs/vivid.nix>
+
+ |
programs.vivid.colorMode
+
+
+Color mode for vivid.
+ +Type: +null or string
+ +Default:
+null
Example:
+"8-bit"
Declared by:
+
+
+<home-manager/modules/programs/vivid.nix>
+
+ |
programs.vivid.filetypes
+
+
+Filetype database for vivid. You can find an example config at: +https://github.com/sharkdp/vivid/blob/master/config/filetypes.yml.
+ +Type: +YAML 1.1 value
+ +Default:
+{ }
Example:
{
+ text = {
+ licenses = [
+ "LICENCE"
+ "COPYRIGHT"
+ ];
+ special = [
+ "CHANGELOG.md"
+ "CODE_OF_CONDUCT.md"
+ "CONTRIBUTING.md"
+ ];
+ todo = [
+ "TODO.md"
+ "TODO.txt"
+ ];
+ };
+}
+
+
+Declared by:
+
+
+<home-manager/modules/programs/vivid.nix>
+
+ |
programs.vivid.themes
+
+
+Theme for vivid
+ +Type: +attribute set of absolute path
+ +Default:
+{ }
Example:
{
+ ayu = builtins.fetchurl {
+ url = "https://raw.githubusercontent.com/NearlyTRex/Vivid/refs/heads/master/themes/ayu.yml";
+ hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
+ };
+
+ mocha = builtins.fetchurl {
+ url = "https://raw.githubusercontent.com/NearlyTRex/Vivid/refs/heads/master/themes/catppuccin-mocha.yml";
+ hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
+ };
+}
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/vivid.nix>
+
+ |
programs.vscode.enable