18 lines
342 B
Nix
18 lines
342 B
Nix
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
name = "FiraCode Nerd Font Mono";
|
|
size = 16;
|
|
};
|
|
settings = {
|
|
disable_ligatures = "never";
|
|
confirm_os_window_close = 0;
|
|
};
|
|
shellIntegration.enableZshIntegration = true;
|
|
keybindings = {
|
|
"cmd+u" = "kitten hints --type url";
|
|
};
|
|
};
|
|
}
|