-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextensions.json
More file actions
116 lines (104 loc) · 6.04 KB
/
extensions.json
File metadata and controls
116 lines (104 loc) · 6.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"recommendations": [
// ---------------------------------
// Must Install Extensions
// ---------------------------------
"Catppuccin.catppuccin-vsc", // Catppuccin theme
"miguelsolorio.fluent-icons", // Fluent Icons
"vscode-icons-team.vscode-icons", // VSCode Icons
"BrandonKirbyson.vscode-animations", // VSCode Animations
"be5invis.vscode-custom-css", // Custom CSS and JS Loader
// ---------------------------------
// UI / Theming
// ---------------------------------
"tal7aouy.rainbow-bracket", // Rainbow Brackets
// ---------------------------------
// Git / GitHub
// ---------------------------------
"eamodio.gitlens", // Git history, blame annotations
"github.codespaces", // GitHub Codespaces integration
"github.copilot", // GitHub Copilot AI suggestions
"github.copilot-chat", // Chat with Copilot
"piotrpalarz.vscode-gitignore-generator", // Generate .gitignore files easily
"GitHub.vscode-pull-request-github", // Github Pull Requests
// ---------------------------------
// Web / Node / PHP
// ---------------------------------
"christian-kohler.npm-intellisense", // Autocomplete npm modules
"formulahendry.code-runner", // Run snippets of code easily
"kamikillerto.vscode-colorize", // Color preview for CSS/HEX
"bmewburn.vscode-intelephense-client", // PHP IntelliSense
"devsense.phptools-vscode", // Advanced PHP support
"xdebug.php-debug", // PHP Debugging
"neilbrayfield.php-docblocker", // PHP DocBlock generator
// ---------------------------------
// Linting / Formatting
// ---------------------------------
"dbaeumer.vscode-eslint", // JavaScript/TypeScript linting
"stylelint.vscode-stylelint", // CSS/SCSS linting
"charliermarsh.ruff", // Python linting
"ms-python.black-formatter", // Python code formatter
"ms-python.isort", // Python import sorter
"esbenp.prettier-vscode", // Prettier formatter for multiple languages
"foxundermoon.shell-format", // Shell script formatter
"davidanson.vscode-markdownlint", // Markdown linting
// ---------------------------------
// Markdown / Docs / Files
// ---------------------------------
"shd101wyy.markdown-preview-enhanced", // Advanced Markdown preview
"yzhang.markdown-all-in-one", // Markdown productivity utilities
"tomoki1207.pdf", // PDF viewer
"vkrsi.code-screenshot", // Take code screenshots
"bierner.markdown-mermaid", // Mermaid diagrams in Markdown
"grapecity.gc-excelviewer", // Excel viewer in VS Code
"shahilkumar.docxreader", // Word & ODT file viewer
"bierner.emojisense", // Emoji autocompletion
// ---------------------------------
// Productivity / Utilities
// ---------------------------------
"gruntfuggly.todo-tree", // Highlight TODOs, FIXMEs
"mechatroner.rainbow-csv", // CSV highlighting
"oderwat.indent-rainbow", // Rainbow indentation guides
"usernamehw.errorlens", // Show inline errors
"wix.vscode-import-cost", // Check bundle/package sizes
"ms-toolsai.jupyter", // Jupyter notebook support
"ms-vscode-remote.remote-containers", // Dev container integration
// ---------------------------------
// Web / Frontend / HTML / CSS / JS
// ---------------------------------
"bradlc.vscode-tailwindcss", // TailwindCSS IntelliSense
"pranaygp.vscode-css-peek", // Jump to CSS definitions
"ecmel.vscode-html-css", // HTML/CSS IntelliSense
"ritwickdey.liveserver", // Live Server for static sites
"formulahendry.auto-rename-tag", // Auto rename HTML/XML tags
"xabikos.javascriptsnippets", // JS code snippets
// ---------------------------------
// Python
// ---------------------------------
"ms-python.python", // Python language support
"ms-python.vscode-pylance", // Fast Python IntelliSense
"kevinrose.vsc-python-indent", // Python indentation helper
// ---------------------------------
// C / C++
// ---------------------------------
"ms-vscode.cpptools", // C/C++ language support
"ms-vscode.makefile-tools", // Makefile integration
"twxs.cmake", // CMake syntax support
"ms-vscode.cmake-tools", // CMake project tools
"ms-vscode.cpptools-extension-pack", // Additional C/C++ tools
// ---------------------------------
// Go / Hugo Templates
// ---------------------------------
"golang.go", // Go language support
"visualstudioexptteam.vscodeintellicode", // AI IntelliCode support for Go
"budparr.language-hugo-vscode", // Hugo syntax
// ---------------------------------
// YAML / JSON / TOML / XML
// ---------------------------------
"redhat.vscode-yaml", // YAML language support + validation
"esbenp.prettier-vscode", // JSON/YAML/TOML formatting
"DotJoshJohnson.xml", // XML support
"ZainChen.json", // JSON language support
"be5invis.toml" // TOML language support
]
}