mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27: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;
|
bash.enableCompletion = true;
|
||||||
|
|
||||||
alacritty.enable = true;
|
alacritty = {
|
||||||
alacritty.settings.font.normal.style = lib.mkForce "Book";
|
enable = true;
|
||||||
alacritty.settings.window.decorations = "None";
|
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 = {
|
direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue