feat: remote commit

This commit is contained in:
Nick 2024-11-20 15:46:18 -06:00
parent 9aaa70b0c1
commit 1ae9601263
5 changed files with 30 additions and 9 deletions

View file

@ -3,7 +3,8 @@
inherit
(pkgs)
shotcut
syncplay
# syncplay
;
};
}

View file

@ -7,13 +7,23 @@
vscode = {
enable = true;
package = pkgs.vscode;
# keybindings = [
# {
# key = "ctrl+c";
# command = "editor.action.clipboardCopyAction";
# when = "textInputFocus";
# }
# ];
keybindings = [
{
key = "ctrl+shift+s";
command = "editor.action.insertCursorAtEndOfEachLineSelected";
when = "textInputFocus";
}
{
key = "ctrl+shift+a";
command = "editor.action.quickFix";
when = "editorHasCodeActionsProvider && textInputFocus && !editorReadonly";
}
{
key = "ctrl+shift+f";
command = "editor.action.formatDocument";
when = "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor";
}
];
extensions = builtins.attrValues {
inherit (pkgs.vscode-extensions.catppuccin) catppuccin-vsc;
inherit (pkgs.vscode-extensions.eamodio) gitlens;