17 lines
330 B
Nix
17 lines
330 B
Nix
{ ... }: {
|
|
imports = [ ./colors.nix ];
|
|
|
|
programs.kitty = {
|
|
enable = true;
|
|
shellIntegration.enableFishIntegration = true;
|
|
settings = {
|
|
editor = "micro";
|
|
|
|
confirm_os_window_close = 0;
|
|
enable_audio_bell = false;
|
|
visual_bell_duration = "0.6";
|
|
visual_bell_color = "#111111";
|
|
};
|
|
};
|
|
}
|