Гайфутдинов Ильнур \ Блог

vscode

Снипеты

Горячие клавиши

Конфигурация

{
  "files.exclude": {
    "**/.git": true,
    "**/_build/**": true,
  },
  "files.watcherExclude": {
      "**/.git/objects/**": true,
      "**/node_modules/**": true,
  },
  "search.exclude": {
      "**/node_modules": true,
      "**/_build/**": true,
  }, 
}

Расширения

InteliJ IDEA Keybindings - горячие клавиши из IDEA InteliJ

Python - для поддержки python

{
  "python.pythonPath": "venv\\Scripts\\python.exe",
  "python.envFile": "${workspaceFolder}/venv/Scripts",

  "python.pythonPath": "${workspaceFolder}/venv/bin/python",
  "python.venvPath": "${workspaceFolder}/venv/",
}

reStructuredText - для поддержки *.rst файлов

{
  "restructuredtext.confPath": "${workspaceFolder}",
}

попробуй «python.terminal.activateEnvInCurrentTerminal»: true

Комментарии