dotfiles/modules/desktop/apps/kitty.nix

30 lines
641 B
Nix
Raw Normal View History

2021-09-09 21:55:28 +02:00
{ config, lib, pkgs, ... }:
2021-11-11 18:34:54 +01:00
{
home-manager.users.moritz = {
2021-09-09 21:55:28 +02:00
programs.kitty = {
enable = true;
settings = {
scrollback_lines = 10000;
enable_audio_bell = false;
cursor_shape = "underline";
2021-09-11 13:53:57 +02:00
window_padding_width = 3;
2022-06-03 15:17:13 +02:00
confirm_os_window_close = 0;
2021-09-09 21:55:28 +02:00
};
2021-12-26 23:35:31 +01:00
keybindings = {
"ctrl+plus" = "change_font_size all +2.0";
"ctrl+minus" = "change_font_size all -2.0";
};
2021-09-09 21:55:28 +02:00
font = {
name = "FiraCode Nerd Font";
size = 10;
};
};
2022-06-03 15:17:13 +02:00
xdg.configFile."kitty/ssh.conf" = {
text = ''
env TERM=xterm-color
'';
};
2021-09-09 21:55:28 +02:00
};
2021-11-11 18:34:54 +01:00
}