mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
feat: remote commit
This commit is contained in:
parent
9aaa70b0c1
commit
1ae9601263
5 changed files with 30 additions and 9 deletions
|
@ -44,7 +44,6 @@ in {
|
||||||
misc-android
|
misc-android
|
||||||
misc-desktop
|
misc-desktop
|
||||||
misc-internet
|
misc-internet
|
||||||
vscode
|
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -88,6 +87,15 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
productionCode = {
|
||||||
|
imports = builtins.attrValues {
|
||||||
|
inherit
|
||||||
|
(modules)
|
||||||
|
vscode
|
||||||
|
;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
productionVideo = {
|
productionVideo = {
|
||||||
imports = builtins.attrValues {
|
imports = builtins.attrValues {
|
||||||
inherit
|
inherit
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
inherit
|
inherit
|
||||||
(pkgs)
|
(pkgs)
|
||||||
shotcut
|
shotcut
|
||||||
syncplay
|
# syncplay
|
||||||
|
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,13 +7,23 @@
|
||||||
vscode = {
|
vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscode;
|
package = pkgs.vscode;
|
||||||
# keybindings = [
|
keybindings = [
|
||||||
# {
|
{
|
||||||
# key = "ctrl+c";
|
key = "ctrl+shift+s";
|
||||||
# command = "editor.action.clipboardCopyAction";
|
command = "editor.action.insertCursorAtEndOfEachLineSelected";
|
||||||
# when = "textInputFocus";
|
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 {
|
extensions = builtins.attrValues {
|
||||||
inherit (pkgs.vscode-extensions.catppuccin) catppuccin-vsc;
|
inherit (pkgs.vscode-extensions.catppuccin) catppuccin-vsc;
|
||||||
inherit (pkgs.vscode-extensions.eamodio) gitlens;
|
inherit (pkgs.vscode-extensions.eamodio) gitlens;
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
"firefox"
|
"firefox"
|
||||||
"productionArt"
|
"productionArt"
|
||||||
"productionAudio"
|
"productionAudio"
|
||||||
|
"productionCode"
|
||||||
"productionVideo"
|
"productionVideo"
|
||||||
"productionWriting"
|
"productionWriting"
|
||||||
"shared"
|
"shared"
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
"entertainment"
|
"entertainment"
|
||||||
"firefox"
|
"firefox"
|
||||||
"desktop"
|
"desktop"
|
||||||
|
"productionCode"
|
||||||
"productionWriting"
|
"productionWriting"
|
||||||
"shared"
|
"shared"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue