1. Hiện đường chỉ thụt lề Indent Guides vào File->Preferences->Settings và thêm vào file USER SETTINGS
// Controls whether the editor should render indent guides
“editor.renderIndentGuides”: true
Trong Sublime Text 3
// Set to false to turn off the indentation guides.
// The color and width of the indent guides may be customized by editing
// the corresponding .tmTheme file, and specifying the colors “guide”,
// “activeGuide” and “stackGuide”
“draw_indent_guides”: true,
2. trong visual code
// Place your settings in this file to overwrite the default settings
{
    // The number of spaces a tab is equal to. This setting is overriden based on the file contents when `editor.detectIndentation` is on.
    “editor.tabSize”: 2,   sửa tab mặc định là 2
    // Controls if the minimap is shown – hiện mini map code
    “editor.minimap.enabled”: false,
    // Format a file on save. A formatter must be available, the file must not be auto-saved, and editor must not be shutting down.
    “editor.formatOnSave”: true,
    // Controls if the editor should automatically format the line after typing
    “editor.formatOnType”: true,  
    // Controls whether the editor should render indent guides
    “editor.renderIndentGuides”: true
}
trong sublime text 3
{
“font_size”: 9,
“ignored_packages”:
[
“Vintage”
],
“tab_size”: 2,
// Set to false to turn off the indentation guides.
// The color and width of the indent guides may be customized by editing
// the corresponding .tmTheme file, and specifying the colors “guide”,
// “activeGuide” and “stackGuide”
“draw_indent_guides”: true,
}