vscode/settings/settings.json

{
  "files.autoSave": "onFocusChange",
  "editor.fontSize": 16,
  "editor.fontFamily": "MonoLisa",
  "editor.lineHeight": 1.6,
  "editor.tabSize": 2,
  "editor.formatOnSave": true,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.wordWrap": "on",
  "editor.stickyScroll.enabled": true,
  "editor.renderLineHighlight": "all",
  "editor.minimap.enabled": false,
  "editor.cursorSmoothCaretAnimation": "on",
  "editor.cursorBlinking": "smooth",
  "workbench.activityBar.location": "top",
  "workbench.productIconTheme": "fluent-icons",
  "workbench.colorTheme": "Vesper",
  "workbench.iconTheme": "symbols",
  "workbench.startupEditor": "none",
  "terminal.integrated.fontSize": 15,
  "terminal.integrated.fontWeight": "bold",
  "terminal.integrated.fontFamily": "FiraMono Nerd Font",
  "terminal.integrated.shellIntegration.enabled": false,
  "terraform.codelens.referenceCount": false,
  "[terraform]": {
    "editor.defaultFormatter": "hashicorp.terraform"
  },
  "[terraform-vars]": {
    "editor.defaultFormatter": "hashicorp.terraform"
  },
  // "files.associations": {
  //   "*.hcl": "terraform",
  // },
  "[yaml]": {
    "editor.defaultFormatter": "redhat.vscode-yaml",
    "editor.autoIndent": "advanced"
  },
  "[go]": {
    "editor.defaultFormatter": "golang.go"
  },
  "[python]": {
    "editor.defaultFormatter": "ms-python.black-formatter",
    "editor.tabSize": 4
  },
  "chat.viewSessions.orientation": "stacked",
  "github.copilot.enable": {
    "*": true,
    "plaintext": true,
    "markdown": true,
    "scminput": false
  }
}