mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 11:17:17 +00:00
Fixes alacritty eating C-/
This commit is contained in:
parent
43fa3b333c
commit
7910b9cc99
1 changed files with 17 additions and 3 deletions
|
@ -15,9 +15,23 @@
|
|||
|
||||
bash.enableCompletion = true;
|
||||
|
||||
alacritty.enable = true;
|
||||
alacritty.settings.font.normal.style = lib.mkForce "Book";
|
||||
alacritty.settings.window.decorations = "None";
|
||||
alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
font.normal.style = lib.mkForce "Book";
|
||||
window = {
|
||||
decorations = "None";
|
||||
option_as_alt = "Both";
|
||||
};
|
||||
key_bindings = [
|
||||
{
|
||||
key = "Slash";
|
||||
mods = "Control";
|
||||
chars = "\\x1b[47;5u";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
direnv = {
|
||||
enable = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue