Settings

// The number of spaces a tab is equal to. This setting is overridden
// based on the file contents when `editor.detectIndentation` is true.
"editor.tabSize": 4,

// Insert spaces when pressing Tab. This setting is overridden
// based on the file contents when `editor.detectIndentation` is true.
"editor.insertSpaces": false,

// When opening a file, `editor.tabSize` and `editor.insertSpaces`
// will be detected based on the file contents. Set to false to keep
// the values you've explicitly set, above.
"editor.detectIndentation": false,

// Controls the size of editor tabs. 
"workbench.editor.wrapTabs": true,
"workbench.editor.tabSizing": "fixed",

// Controls the maximum width of tabs when Workbench › Editor: Tab Sizing size is set to fixed.
"workbench.editor.tabSizingFixedMaxWidth": 160,
// Controls the minimum width of tabs when Workbench › Editor: Tab Sizing size is set to fixed.
"workbench.editor.tabSizingFixedMinWidth": 80,

// Controls the size of pinned editor tabs.
"workbench.editor.pinnedTabSizing": "normal",
"workbench.editor.pinnedTabsOnSeparateRow": true,

// Controls the maximum number of opened editors. 
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.value": 12,

// Controls where editors open. 
// Select first or last to open editors independently from the currently active one.
// Select left or right to open editors to the left or right of the currently active one. 
"workbench.editor.openPositioning": "last",
Ctrl ,