VS Code
Get the most out of VS Code / Cursor.
Related
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
- git
- ESLint
- Nextjs Snippets
- Kubernetes
- NX Console
- Stripe
- Snapshot-Tools
- Hardhat Solidity
- Writing Tools
- Pretty TS Errors
Extract list of Extension using VS Code UI:
- Press Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (Mac)
- Type "Show Extensions" and press Enter
- Click on the "..." (ellipsis) menu in the Extensions panel
- Select "Show Running Extensions"
code --list-extensions