Commit for generation 108

This commit is contained in:
2024-09-26 16:15:31 -04:00
parent af7b0d34b7
commit 00a36e1995
2 changed files with 22 additions and 3 deletions

4
flake.lock generated
View File

@@ -426,8 +426,8 @@
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks"
}, },
"locked": { "locked": {
"lastModified": 1727381219, "lastModified": 1727381443,
"narHash": "sha256-opVpZUfNI78B6Y33O6CAuv4zgfhTI8IMPjYqv3oCssM=", "narHash": "sha256-ndklrgp7ufcZXAaOl2LNuwAbKSVcxrI1YDUe3bPGTfE=",
"path": "/home/pagedmov/sysflakes/glasshouse-desktop/dotfiles/packages/nixvim", "path": "/home/pagedmov/sysflakes/glasshouse-desktop/dotfiles/packages/nixvim",
"type": "path" "type": "path"
}, },

View File

@@ -20,6 +20,25 @@
key = "<F3>"; key = "<F3>";
mode = "t"; mode = "t";
} }
{
action = "<C-w>h"; # Move to the left split (Ctrl+W, then H)
key = "H"; # Shift+H key binding
mode = "n"; # Normal mode
}
{
action = "<C-w>j"; # Move to the bottom split (Ctrl+W, then J)
key = "J";
mode = "n";
}
{
action = "<C-w>k"; # Move to the top split (Ctrl+W, then K)
key = "K";
mode = "n";
}
{
action = "<C-w>l"; # Move to the right split (Ctrl+W, then L)
key = "L";
mode = "n";
}
]; ];
} }