Skip to main content

VS Code

Get the most out of VS Code / Cursor.

AI Coding

Best Practices

Create a .vscode/settings.json to maintain consistent workspace settings

Use an .editorconfig file for basic editor settings:

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

Extensions

VS Code Extensions Workbook

Extract list of Extension using VS Code UI:

  1. Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac)
  2. Type "Show Extensions" and press Enter
  3. Click on the "..." (ellipsis) menu in the Extensions panel
  4. Select "Show Running Extensions"
code --list-extensions

Smart Contract Dev

See blockchain development