From 063573fd82b11d88b7480ed9aa40303f9d2b552c Mon Sep 17 00:00:00 2001 From: ced4rtree Date: Wed, 26 Nov 2025 22:05:17 -0700 Subject: [PATCH] themes: use normal base16-colors in base16-pro-max --- modules/plugins/theme/supported-themes.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/modules/plugins/theme/supported-themes.nix b/modules/plugins/theme/supported-themes.nix index 197ca43c..d07e3a51 100644 --- a/modules/plugins/theme/supported-themes.nix +++ b/modules/plugins/theme/supported-themes.nix @@ -19,16 +19,10 @@ in { base16-colors, transparent, ... - }: let - colors = - builtins.replaceStrings - [''["'' ''"]''] - ["" ""] - (toLuaObject base16-colors); - in '' + }: '' -- Base16 theme require('base16-pro-max').setup { - colors = ${colors}, + colors = ${toLuaObject base16-colors}, styles = { transparency = ${boolToString transparent} }, } vim.cmd.colorscheme "base16-pro-max"