-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextensions.json
More file actions
executable file
·160 lines (125 loc) · 4.34 KB
/
extensions.json
File metadata and controls
executable file
·160 lines (125 loc) · 4.34 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"recommendations": [
// Core Vim functionality
"vscodevim.vim",
// File Tree and Navigation (nvim-tree replacement)
"vscode-icons-team.vscode-icons",
"christian-kohler.path-intellisense",
// Fuzzy Finding and Search (Telescope replacements)
"tomrijndorp.find-it-faster",
"alefragnani.project-manager",
"ms-vscode.vscode-json",
// Git Integration (gitsigns, lazygit, neogit replacements)
"eamodio.gitlens",
"mhutchie.git-graph",
"donjayamanne.git-extension-pack",
"codezombiech.gitignore",
"alefragnani.git-project-manager",
// LSP and Language Support (matching your LSP setup)
"ms-vscode.vscode-typescript-next",
"bradlc.vscode-tailwindcss",
"ms-python.python",
"ms-python.pylint",
"ms-python.black-formatter",
"rust-lang.rust-analyzer",
"golang.go",
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"vscjava.vscode-java-pack",
"ms-dotnettools.csharp",
"dart-code.dart-code",
"dart-code.flutter",
// Debugging (DAP replacements)
"ms-vscode.vscode-js-debug",
"ms-python.debugpy",
"vadimcn.vscode-lldb",
// Code Completion and Snippets (nvim-cmp replacements)
"github.copilot",
"github.copilot-chat",
"ms-vscode.vscode-ai-assisted-code-refactor",
"visualstudioexptteam.vscodeintellicode",
// Formatting and Linting (conform.nvim, none-ls replacements)
"esbenp.prettier-vscode",
"ms-vscode.vscode-eslint",
"charliermarsh.ruff",
"ms-python.autopep8",
"ms-python.isort",
// Treesitter equivalent (better syntax highlighting)
"jeff-hykin.better-cpp-syntax",
"ms-vscode.vscode-typescript-next",
"bradlc.vscode-tailwindcss",
// Terminal Integration (toggleterm replacement)
"ms-vscode.vscode-terminal-profiles",
// UI Enhancements (lualine, barbecue replacements)
"johnpapa.vscode-peacock",
"pkief.material-icon-theme",
"miguelsolorio.fluent-icons",
"zhuangtongfa.material-theme",
"github.github-vscode-theme",
"dracula-theme.theme-dracula",
"monokai.theme-monokai-pro-vscode",
"sainnhe.gruvbox-material",
"enkia.tokyo-night",
// Code Actions and Refactoring (actions-preview, refactoring replacements)
"ms-vscode.vscode-ai-assisted-code-refactor",
"p42ai.refactor",
"usernamehw.errorlens",
// Multi-cursor (vim-visual-multi replacement)
"alefragnani.numbered-bookmarks",
// Comment Support (vim-commentary replacement)
"aaron-bond.better-comments",
// Bracket Pair Colorization and Rainbow
"coenraads.bracket-pair-colorizer-2",
"2gua.rainbow-brackets",
// Markdown Support
"yzhang.markdown-all-in-one",
"shd101wyy.markdown-preview-enhanced",
"davidanson.vscode-markdownlint",
// Docker Support
"ms-azuretools.vscode-docker",
// Database Support (dataviewer replacement)
"mtxr.sqltools",
"alexcvzz.vscode-sqlite",
// Todo Highlighting (todo-comments replacement)
"gruntfuggly.todo-tree",
"wayou.vscode-todo-highlight",
// Indentation Guides
"oderwat.indent-rainbow",
// Live Share for Collaboration
"ms-vsliveshare.vsliveshare",
// REST Client (for API testing)
"humao.rest-client",
// Hex Editor
"ms-vscode.hexeditor",
// YAML Support
"redhat.vscode-yaml",
// XML Support
"redhat.vscode-xml",
// Environment Variables
"mikestead.dotenv",
// Code Spell Checker
"streetsidesoftware.code-spell-checker",
// Harpoon-like functionality (file bookmarks)
"alefragnani.bookmarks",
// Better folding
"maptz.regionfolder",
// Search and Replace enhancements
"ms-vscode.vscode-search-replacement",
// Which Key equivalent (shows keybindings)
"vspacecode.whichkey",
// Minimap enhancements
"aaron-bond.better-comments",
// Auto-close and auto-rename tags
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
// Live Server for web development
"ritwickdey.liveserver",
// Additional Language Support
"james-yu.latex-workshop",
"ms-vscode.powershell",
"hashicorp.terraform",
"ms-kubernetes-tools.vscode-kubernetes-tools",
// Performance monitoring
"ms-vscode.vscode-performance-monitor"
]
}