mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
move nixos-specific vscode settings into section
This commit is contained in:
parent
a233cd2087
commit
2f8e061303
1 changed files with 5 additions and 3 deletions
|
@ -97,8 +97,6 @@ with lib;
|
|||
"editor.cursorSurroundingLines" = 9;
|
||||
"editor.renderFinalNewline" = false;
|
||||
"editor.scrollBeyondLastLine" = false;
|
||||
"extensions.autoCheckUpdates" = false;
|
||||
"extensions.autoUpdate" = false;
|
||||
"files.insertFinalNewline" = true;
|
||||
"files.trimFinalNewlines" = true;
|
||||
"files.watcherExclude"."**/result/**" = true;
|
||||
|
@ -115,10 +113,14 @@ with lib;
|
|||
"terminal.integrated.shellIntegration.enabled" = false;
|
||||
"terminal.integrated.showExitAlert" = false;
|
||||
"trailing-spaces.highlightCurrentLine" = false;
|
||||
"update.mode" = "none";
|
||||
"update.showReleaseNotes" = false;
|
||||
"window.menuBarVisibility" = "hidden";
|
||||
"workbench.startupEditor" = "none";
|
||||
|
||||
# NixOS specific vscode settings, do not copy to other operating systems:
|
||||
"extensions.autoCheckUpdates" = false;
|
||||
"extensions.autoUpdate" = false;
|
||||
"update.mode" = "none";
|
||||
};
|
||||
|
||||
environment.etc."vscode-keybindings.json".text = builtins.toJSON [
|
||||
|
|
Loading…
Reference in a new issue