7
1
In review
Synced today
What it does
Editor Optimization provides settings to improve code editor performance by reducing visual overhead, managing file handling, and optimizing search behavior.
Skill profile
Keep exploring
More options in Dev Tools.
Claude Code · Codex · OpenClaw
Python
Updated 5/16/2026
Agent compatibility
Compatibility has not been reviewed for this listing yet. Check the publisher documentation before installing.
Installation
npx skills add https://github.com/tools-only/X-Skills --skill 2224-editor-optimization_5342a688Review source code and installation permissions before adding third-party tools to an agent.
Editor Optimization is organized in the Dev Tools category. Compare its source, install method, and compatibility before adding it to your workflow.
Third-party agent tools may access source code, credentials, or browser sessions. Read the source documentation and use the minimum permissions needed.
npx skills add https://github.com/tools-only/X-Skills --skill 2224-editor-optimization_5342a688SKILL.md
# Editor Optimization
## Editor Optimization
### Reduce Visual Overhead
```json
// settings.json
{
// Disable expensive features
"editor.minimap.enabled": false,
"editor.renderWhitespace": "none",
"editor.renderLineHighlight": "none",
"editor.roundedSelection": false,
"editor.scrollBeyondLastLine": false,
"editor.smoothScrolling": false,
"breadcrumbs.enabled": false,
// Reduce rendering
"editor.cursorBlinking": "solid",
"editor.cursorSmoothCaretAnimation": "off",
// Limit tokenization
"editor.maxTokenizationLineLength": 5000
}
```
### File Handling
```json
{
// Limit open editors
"workbench.editor.limit.enabled": true,
"workbench.editor.limit.value": 10,
// Disable auto-save (optional)
"files.autoSave": "off",
// Exclude files from watching
"files.watcherExclude": {
"**/node_modules/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/dist/**": true,
"**/build/**": true,
"**/.next/**": true
}
}
```
### Search Optimization
```json
{
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/coverage": true,
"**/.git": true,
"**/*.lock": true
},
"search.followSymlinks": false,
"search.useIgnoreFiles": true
}
```skill
mattpocock
A tool that automates setting up Husky pre-commit hooks with lint-staged, Prettier formatting, type checking, and tests in a code repository.