[tohru] Stop GNOME overriding VS Code keybindings for Copy Line Up/Down
This commit is contained in:
parent
bf8e65ebe3
commit
8c747172a7
2 changed files with 16 additions and 0 deletions
|
@ -4,5 +4,6 @@
|
|||
imports = [
|
||||
# TODO: nix-ify other parts of GNOME config
|
||||
./appearance.nix
|
||||
./keyboard.nix
|
||||
];
|
||||
}
|
||||
|
|
15
home/gnome/keyboard.nix
Normal file
15
home/gnome/keyboard.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
# { config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
dconf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"org/gnome/desktop/wm/keybindings" = {
|
||||
# These are largely useless on most normal systems
|
||||
# and conflict with VS Code's default keybinds for "Copy Line Up/Down"
|
||||
move-to-workspace-up = [ ];
|
||||
move-to-workspace-down = [ ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue