feat(applications): add alacritty
This commit is contained in:
parent
6d620fe0cd
commit
4f2121798e
28
user/modules/applications/alacritty.nix
Normal file
28
user/modules/applications/alacritty.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{
|
||||||
|
programs.alacritty = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
window = {
|
||||||
|
decorations = "Buttonless";
|
||||||
|
};
|
||||||
|
font = {
|
||||||
|
size = 14;
|
||||||
|
offset.y = 4;
|
||||||
|
normal = {
|
||||||
|
family = "ZedMono Nerd Font";
|
||||||
|
style = "Extended Light";
|
||||||
|
};
|
||||||
|
bold.style = "Extended Bold";
|
||||||
|
italic.style = "Extended Italic";
|
||||||
|
bold_italic.style = "Extended Bold Italic";
|
||||||
|
};
|
||||||
|
key_bindings = [
|
||||||
|
{
|
||||||
|
key = "Slash";
|
||||||
|
mods = "Control";
|
||||||
|
chars = "\\x1f";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user