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

@ -44,7 +44,6 @@ in {
misc-android
misc-desktop
misc-internet
vscode
;
};
};
@ -88,6 +87,15 @@ in {
};
};
productionCode = {
imports = builtins.attrValues {
inherit
(modules)
vscode
;
};
};
productionVideo = {
imports = builtins.attrValues {
inherit

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;

View file

@ -10,6 +10,7 @@
"firefox"
"productionArt"
"productionAudio"
"productionCode"
"productionVideo"
"productionWriting"
"shared"

View file

@ -8,6 +8,7 @@
"entertainment"
"firefox"
"desktop"
"productionCode"
"productionWriting"
"shared"
];