🚀 use ssh kitten

dev-docs
Moritz Böhme 2022-06-03 15:17:13 +02:00
parent c99f59c5ea
commit e4c1ee6bc2
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
2 changed files with 7 additions and 2 deletions

View File

@ -43,8 +43,7 @@
rm = "rm -i"; rm = "rm -i";
mv = "mv -i"; mv = "mv -i";
# HACK to fix kitty not being recongized ssh = "kitty +kitten ssh";
ssh = "TERM=xterm-color command ssh";
nix-switch = "doas nixos-rebuild switch --flake ~/.dotfiles"; nix-switch = "doas nixos-rebuild switch --flake ~/.dotfiles";
nix-boot = "doas nixos-rebuild boot --flake ~/.dotfiles"; nix-boot = "doas nixos-rebuild boot --flake ~/.dotfiles";

View File

@ -9,6 +9,7 @@
enable_audio_bell = false; enable_audio_bell = false;
cursor_shape = "underline"; cursor_shape = "underline";
window_padding_width = 3; window_padding_width = 3;
confirm_os_window_close = 0;
}; };
keybindings = { keybindings = {
"ctrl+plus" = "change_font_size all +2.0"; "ctrl+plus" = "change_font_size all +2.0";
@ -19,5 +20,10 @@
size = 10; size = 10;
}; };
}; };
xdg.configFile."kitty/ssh.conf" = {
text = ''
env TERM=xterm-color
'';
};
}; };
} }