mueve settings de codium a un archivo a parte
This commit is contained in:
parent
65e89e6e9e
commit
12fa35eeea
8
home/codium.nix
Normal file
8
home/codium.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"files.autoSave" = "onFocusChange";
|
||||
"explorer.confirmDelete" = false;
|
||||
"explorer.confirmDragAndDrop" = false;
|
||||
"security.workspace.trust.enabled" = false;
|
||||
"workbench.startupEditor" = "none";
|
||||
"workbench.colorTheme" = "Default High Contrast";
|
||||
}
|
|
@ -98,13 +98,7 @@
|
|||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
userSettings = {
|
||||
"files.autoSave" = "onFocusChange";
|
||||
"explorer.confirmDelete" = false;
|
||||
"explorer.confirmDragAndDrop" = false;
|
||||
"security.workspace.trust.enabled" = false;
|
||||
"workbench.startupEditor" = "none";
|
||||
};
|
||||
userSettings = import ./codium.nix;
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
|
|
Loading…
Reference in a new issue