NixOS-Config/home-manager/shared/shell/zellij.nix

44 lines
958 B
Nix
Raw Normal View History

2024-05-02 11:21:29 +02:00
{
lib,
pkgs,
inputs,
2024-05-02 11:21:29 +02:00
...
}: {
2024-04-29 20:06:28 +02:00
programs.zellij = {
# This autostarts zellij on zsh start
# TODO find specific settings for vscode to avoid
2024-04-29 20:37:48 +02:00
enable = true;
2024-04-29 20:06:28 +02:00
enableZshIntegration = true;
settings = {
session_serialization = true;
theme = "catppuccin-macchiato";
themes = {
catppuccin-macchiato = {
bg = "#5b6078";
fg = "#cad3f5";
red = "#ed8796";
green = "#a6da95";
blue = "#8aadf4";
yellow = "#eed49f";
magenta = "#f5bde6";
orange = "#f5a97f";
cyan = "#91d7e3";
black = "#1e2030";
white = "#cad3f5";
};
};
pane = {
2024-05-02 12:10:05 +02:00
"plugin location=" = "file:${inputs.zjstatus.packages.${pkgs.system}.default}/bin/zjstatus.wasm";
};
};
2024-04-29 20:06:28 +02:00
};
# home.file = {
# "zellij" = {
# source = ./zellij.kdl;
# target = ".config/zellij/config.kdl";
# };
# };
2024-04-29 20:06:28 +02:00
}