23 lines
678 B
Nix
23 lines
678 B
Nix
{ config, pkgs, inputs, ...}:
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
foreground = "#${config.colorScheme.colors.base05}";
|
|
background = "#${config.colorScheme.colors.base00}";
|
|
|
|
active_tab_foreground = "#${config.colorScheme.colors.base05}";
|
|
active_tab_background = "#${config.colorScheme.colors.base01}";
|
|
inactive_tab_foreground = "#${config.colorScheme.colors.base05}";
|
|
inactive_tab_background = "#${config.colorScheme.colors.base00}";
|
|
env = "TERM=xterm-256color";
|
|
background_opacity = "0.5";
|
|
font_size = 13;
|
|
# ...
|
|
};
|
|
extraConfig = ''
|
|
map ctrl+shift+t new_tab_with_cwd
|
|
'';
|
|
};
|
|
}
|