LINUX.ORG.RU

История изменений

Исправление tz4678, (текущая версия) :

Хотя можно vscode поставить и настроить:

$ code --list-extensions  
aaron-bond.better-comments
akamud.vscode-theme-onedark
alefragnani.Bookmarks
anseki.vscode-color
austin.code-gnu-global
be5invis.vscode-custom-css
bungcip.better-toml
christian-kohler.npm-intellisense
CoenraadS.bracket-pair-colorizer
cssho.vscode-svgviewer
DavidAnson.vscode-markdownlint
dbaeumer.vscode-eslint
donjayamanne.githistory
DotJoshJohnson.xml
dracula-theme.theme-dracula
dunstontc.dark-plus-syntax
ecmel.vscode-html-css
EditorConfig.EditorConfig
eg2.vscode-npm-script
emmanuelbeziat.vscode-great-icons
Equinusocio.vsc-community-material-theme
Equinusocio.vsc-material-theme
equinusocio.vsc-material-theme-icons
esbenp.prettier-vscode
felipecaputo.git-project-manager
formulahendry.auto-close-tag
formulahendry.auto-rename-tag
formulahendry.code-runner
GrapeCity.gc-excelviewer
Gruntfuggly.todo-tree
himanoa.Python-autopep8
HookyQR.beautify
humao.rest-client
jasonnutter.search-node-modules
johnpapa.vscode-peacock
mads-hartmann.bash-ide-vscode
michelemelluso.code-beautifier
ms-azuretools.vscode-docker
ms-python.python
ms-vscode.cpptools
ms-vsliveshare.vsliveshare
msjsdiag.debugger-for-chrome
naumovs.color-highlight
njpwerner.autodocstring
octref.vetur
oderwat.indent-rainbow
PKief.material-icon-theme
quicktype.quicktype
redhat.vscode-yaml
richie5um2.vscode-sort-json
ritwickdey.live-sass
ritwickdey.LiveServer
Shan.code-settings-sync
shd101wyy.markdown-preview-enhanced
slevesque.vscode-hexdump
streetsidesoftware.code-spell-checker
syler.sass-indented
teabyii.ayu
thenikso.github-plus-theme
twxs.cmake
vangware.dark-plus-material
vincaslt.highlight-matching-tag
VisualStudioExptTeam.vscodeintellicode
vscode-icons-team.vscode-icons
yzane.markdown-pdf
yzhang.markdown-all-in-one

Из этого списка можно все вычистить, что к html/css не относится и с настройкой возиться не надо. И settings.json:

{
  // ...
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[python]": {
    "editor.defaultFormatter": "ms-python.python"
  },
  "breadcrumbs.enabled": true,
  "editor.accessibilitySupport": "off",
  "editor.fontFamily": "Fira Code",
  "editor.fontLigatures": true,
  "editor.fontSize": 16,
  "editor.renderWhitespace": "boundary",
  "editor.rulers": [
    72,
    80,
    100,
    120
  ],
  "editor.suggestSelection": "first",
  "editor.tabSize": 2,
  "editor.wordWrap": "on",
  "editor.wordWrapColumn": 120,
  "explorer.confirmDelete": true,
  "files.insertFinalNewline": true,
  "files.trimFinalNewlines": true,
  "files.trimTrailingWhitespace": true,
  "html.format.indentInnerHtml": true,
  "javascript.updateImportsOnFileMove.enabled": "always",
  "prettier.endOfLine": "lf",
  "prettier.printWidth": 80,
  "prettier.semi": false,
  "prettier.singleQuote": true,
  "python.formatting.autopep8Args": [
    "--indent-size=2",
    "--max-line-length=80"
  ],
  "python.jediEnabled": false,
  "python.pythonPath": "/usr/sbin/python",
  "terminal.integrated.fontFamily": "Noto Mono for Powerline",
  "terminal.integrated.fontSize": 15,
  "terminal.integrated.shell.linux": "/bin/zsh",
  "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  "workbench.colorTheme": "Solarized Dark",
  "workbench.iconTheme": "material-icon-theme",
  "sync.forceDownload": false,
  "editor.renderControlCharacters": true,
  "window.titleBarStyle": "custom"
}

Исходная версия tz4678, :

Хотя можно vscode поставить и настроить:

$ code --list-extensions  
aaron-bond.better-comments
akamud.vscode-theme-onedark
alefragnani.Bookmarks
anseki.vscode-color
austin.code-gnu-global
be5invis.vscode-custom-css
bungcip.better-toml
christian-kohler.npm-intellisense
CoenraadS.bracket-pair-colorizer
cssho.vscode-svgviewer
DavidAnson.vscode-markdownlint
dbaeumer.vscode-eslint
donjayamanne.githistory
DotJoshJohnson.xml
dracula-theme.theme-dracula
dunstontc.dark-plus-syntax
ecmel.vscode-html-css
EditorConfig.EditorConfig
eg2.vscode-npm-script
emmanuelbeziat.vscode-great-icons
Equinusocio.vsc-community-material-theme
Equinusocio.vsc-material-theme
equinusocio.vsc-material-theme-icons
esbenp.prettier-vscode
felipecaputo.git-project-manager
formulahendry.auto-close-tag
formulahendry.auto-rename-tag
formulahendry.code-runner
GrapeCity.gc-excelviewer
Gruntfuggly.todo-tree
himanoa.Python-autopep8
HookyQR.beautify
humao.rest-client
jasonnutter.search-node-modules
johnpapa.vscode-peacock
mads-hartmann.bash-ide-vscode
michelemelluso.code-beautifier
ms-azuretools.vscode-docker
ms-python.python
ms-vscode.cpptools
ms-vsliveshare.vsliveshare
msjsdiag.debugger-for-chrome
naumovs.color-highlight
njpwerner.autodocstring
octref.vetur
oderwat.indent-rainbow
PKief.material-icon-theme
quicktype.quicktype
redhat.vscode-yaml
richie5um2.vscode-sort-json
ritwickdey.live-sass
ritwickdey.LiveServer
Shan.code-settings-sync
shd101wyy.markdown-preview-enhanced
slevesque.vscode-hexdump
streetsidesoftware.code-spell-checker
syler.sass-indented
teabyii.ayu
thenikso.github-plus-theme
twxs.cmake
vangware.dark-plus-material
vincaslt.highlight-matching-tag
VisualStudioExptTeam.vscodeintellicode
vscode-icons-team.vscode-icons
yzane.markdown-pdf
yzhang.markdown-all-in-one

Из этого списка можно все вычистить, что к html/css не относится и с настройкой возиться не надо.