mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 02:40:14 +00:00
fixes to nvim and alacritty
This commit is contained in:
@ -1,10 +1,23 @@
|
||||
{ config, ... }: {
|
||||
{ config, pkgs, lib, ... }: {
|
||||
|
||||
home-manager.users.${config.user}.programs.alacritty.settings.key_bindings =
|
||||
[{
|
||||
key = "F";
|
||||
mods = "Super";
|
||||
action = "ToggleSimpleFullscreen";
|
||||
}];
|
||||
# MacOS-specific settings for Alacritty
|
||||
home-manager.users.${config.user} = {
|
||||
programs.alacritty.settings = {
|
||||
font.size = lib.mkForce 18.0;
|
||||
shell.program = "${pkgs.fish}/bin/fish";
|
||||
key_bindings = [
|
||||
{
|
||||
key = "F";
|
||||
mods = "Super";
|
||||
action = "ToggleSimpleFullscreen";
|
||||
}
|
||||
{
|
||||
key = "L";
|
||||
mods = "Super";
|
||||
chars = "\\x1F";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -17,25 +17,6 @@
|
||||
(pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
];
|
||||
|
||||
programs.alacritty.settings = {
|
||||
shell.program = "${pkgs.fish}/bin/fish";
|
||||
keybindings = [
|
||||
{
|
||||
key = "F";
|
||||
mods = "Super";
|
||||
action = "ToggleSimpleFullscreen";
|
||||
}
|
||||
{
|
||||
key = "L";
|
||||
mods = "Super";
|
||||
chars = "\\x1F";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
#fonts.fonts = with pkgs;
|
||||
# [ (nerdfonts.override { fonts = [ "Victor Mono" ]; }) ];
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user