alacritty settings for macos

This commit is contained in:
Noah Masur 2022-06-14 07:00:12 -04:00
parent 884f0cdeea
commit 84a6f3a38a

View File

@ -65,6 +65,29 @@
noti # Create notifications programmatically
];
programs.alacritty.settings.keybindings = [
{
key = "F";
mods = "Super";
action = "ToggleSimpleFullscreen";
}
{
key = "L";
mods = "Super";
chars = "\\x1F";
}
{
key = "H";
mods = "Super|Shift";
action = "x02p"; # Previous tmux window
}
{
key = "L";
mods = "Super|Shift";
action = "x02n"; # Next tmux window
}
];
fonts.fonts = with pkgs;
[ (nerdfonts.override { fonts = [ "fira-mono" ]; }) ];