test vscode config
This commit is contained in:
parent
fa23067280
commit
7ab063c290
|
@ -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";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue