tmuxinator

This commit is contained in:
Joe Frikker
2024-05-23 09:40:21 -04:00
parent f8bc6681de
commit ad5d2466cb
41 changed files with 515 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
pkgs:
{
enable = true;
extraPackages = with pkgs.bat-extras; [ batdiff batman batgrep batwatch ];
config = {
style = "numbers";
theme = "catppuccin-frappe";
};
themes = {
catppuccin-frappe = {
src = pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "sublime-text"; # Bat uses sublime syntax for its themes
rev = "3d8625d937d89869476e94bc100192aa220ce44a";
sha256 = "3ABUsfJpb6RO6AiuuSL5gwDofJIwC5tlEMzBrlY9/s0=";
};
file = "Frappe.tmTheme";
};
};
}