test vscode config

This commit is contained in:
Frost-Phoenix 2023-12-07 16:03:09 +01:00
parent fa23067280
commit 7ab063c290

View file

@ -30,13 +30,40 @@
"vsicons.dontShowNewVersionMessage" = true;
"editor.fontLigatures" = true;
"editor.minimap.enabled" = false;
"workbench.startupEditor" = "none";
"editor.renderWhitespace" = "all";
"editor.renderLineHighlight" = "none";
"workbench.layoutControl.type" = "menu";
"workbench.editor.limit.enabled" = true;
"workbench.editor.limit.value" = 1;
"workbench.editor.limit.perEditorGroup" = true;
"workbench.editor.showTabs" = false;
"files.autoSave" = "onWindowChange";
"explorer.openEditors.visible" = 0;
"breadcrumbs.enabled" = false;
"editor.renderControlCharacters" = false;
"workbench.activityBar.visible" = false;
"workbench.statusBar.visible" = false;
"editor.scrollbar.verticalScrollbarSize" = 2;
"editor.scrollbar.horizontalScrollbarSize" = 2;
"editor.scrollbar.vertical" = "hidden";
"editor.scrollbar.horizontal" = "hidden";
"workbench.layoutControl.enabled" = false
"editor.mouseWheelZoom" = true;
# keyboard shortcuts
"editor.action.commentLine" = "ctrl+d";
"workbench.action.files.saveFiles" = "ctrl+s";
};
# Keybindings
keybindings = [
{
key = "ctrl+q";
command = "editor.action.commentLine";
when = "editorTextFocus && !editorReadonly";
}
{
key = "ctrl+s";
command = "workbench.action.files.saveFiles";
}
];
};
}