Compare commits

..

No commits in common. "67fb3e00a493c68717d25861ab772d47d018b381" and "8f1002844939f311c50fde88919a0f1f83ec6a8e" have entirely different histories.

2 changed files with 67 additions and 76 deletions

View file

@ -3,8 +3,9 @@
lib, lib,
}: let }: let
inherit (lib.strings) hasPrefix optionalString; inherit (lib.strings) hasPrefix optionalString;
inherit (lib.attrsets) genAttrs listToAttrs mergeAttrsList; inherit (lib.attrsets) listToAttrs;
inherit (lib.options) mkOption mkEnableOption; inherit (lib.options) mkOption mkEnableOption;
inherit (lib.generators) mkLuaInline;
inherit (lib.types) bool str; inherit (lib.types) bool str;
inherit (lib.nvim.types) hexColor mkPluginSetupOption; inherit (lib.nvim.types) hexColor mkPluginSetupOption;
cfg = config.vim.theme; cfg = config.vim.theme;
@ -84,8 +85,7 @@ in {
internal = true; internal = true;
}; };
term_colors = mkEnableOption' "term_colors"; term_colors = mkEnableOption' "term_colors";
integrations = integrations = {
{
nvimtree = { nvimtree = {
enabled = mkEnableOption' "enabled"; enabled = mkEnableOption' "enabled";
transparent_panel = mkOption { transparent_panel = mkOption {
@ -95,6 +95,20 @@ in {
show_root = mkEnableOption' "show_root"; show_root = mkEnableOption' "show_root";
}; };
hop = mkEnableOption' "hop";
gitsigns = mkEnableOption' "gitsigns";
telescope = mkEnableOption' "telescope";
treesitter = mkEnableOption' "treesitter";
treesitter_context = mkEnableOption' "treesitter_context";
ts_rainbow = mkEnableOption' "ts_rainbow";
fidget = mkEnableOption' "fidget";
alpha = mkEnableOption' "alpha";
leap = mkEnableOption' "leap";
markdown = mkEnableOption' "markdown";
noice = mkEnableOption' "noice";
# nvim-notify
notify = mkEnableOption' "notify";
which_key = mkEnableOption' "which_key";
navic = { navic = {
enabled = mkEnableOption' "enabled"; enabled = mkEnableOption' "enabled";
# lualine will set backgound to mantle # lualine will set backgound to mantle
@ -103,22 +117,7 @@ in {
default = "NONE"; default = "NONE";
}; };
}; };
} };
// genAttrs [
"hop"
"gitsigns"
"telescope"
"treesitter"
"treesitter_context"
"ts_rainbow"
"fidget"
"alpha"
"leap"
"markdown"
"noice"
"notify"
"which_key"
] (name: mkEnableOption' name);
}; };
setup = '' setup = ''
-- Catppuccin theme -- Catppuccin theme
@ -148,24 +147,31 @@ in {
}; };
gruvbox = { gruvbox = {
setupOpts = setupOpts = mkPluginSetupOption "gruvbox" {
mkPluginSetupOption "gruvbox" {
transparent_mode = mkOption { transparent_mode = mkOption {
type = bool; type = bool;
default = cfg.transparent; default = cfg.transparent;
internal = true; internal = true;
}; };
italic = # transparent_mode = cfg.transparent;
{ # add neovim terminal colors
terminal_colors = mkEnableOption' "terminal_colors";
undercurl = mkEnableOption' "undercurls";
underline = mkEnableOption' "underline";
bold = mkEnableOption' "bold";
italic = {
strings = mkEnableOption' "strings";
emphasis = mkEnableOption' "emphasis";
comments = mkEnableOption' "comments";
operators = mkEnableOption "operators"; operators = mkEnableOption "operators";
} folds = mkEnableOption' "folds";
// genAttrs [ };
"strings" strikethrough = mkEnableOption' "strikethrough";
"emphasis" invert_selection = mkEnableOption "invert_selection";
"comments" invert_signs = mkEnableOption "invert_signs";
"folds" invert_tabline = mkEnableOption "invert_tabline";
] (name: mkEnableOption' name); invert_intend_guides = mkEnableOption "invert_intend_guides";
inverse = mkEnableOption' "inverse";
contrast = mkOption { contrast = mkOption {
type = str; type = str;
default = ""; default = "";
@ -173,24 +179,8 @@ in {
# TODO: fix these # TODO: fix these
# palette_overrides = mkLuaInline "{}"; # palette_overrides = mkLuaInline "{}";
# overrides = mkLuaInline "{}"; # overrides = mkLuaInline "{}";
} dim_inactive = mkEnableOption "dim_inactive";
// mergeAttrsList [ };
(genAttrs [
"terminal_colors"
"undercurls"
"underline"
"bold"
"strikethrough"
"inverse"
] (name: mkEnableOption' name))
(genAttrs [
"invert_selection"
"invert_signs"
"invert_tabline"
"invert_intend_guides"
"dim_inactive"
] (name: mkEnableOption name))
];
setup = '' setup = ''
-- Gruvbox theme -- Gruvbox theme
vim.o.background = "${cfg.style}" vim.o.background = "${cfg.style}"

View file

@ -17,6 +17,7 @@
}; };
in { in {
options.vim.theme = { options.vim.theme = {
themes = supportedThemes;
inherit (supportedThemes.${cfg.name}) setupOpts; inherit (supportedThemes.${cfg.name}) setupOpts;
enable = mkOption { enable = mkOption {