Files
dotfiles/config/zed/settings.json

80 lines
1.7 KiB
JSON

{
"context_servers": {
"github-activity-summarizer": {
"settings": {}
}
},
"telemetry": {
"metrics": false
},
"agent": {
"always_allow_tool_actions": false,
"default_model": {
"provider": "copilot_chat",
"model": "gpt-4.1"
},
"version": "2"
},
"languages": {
"Python": {
"enable_language_server": true,
"allow_rewrap": "anywhere",
"auto_indent_on_paste": true
},
"Shell Script": {
"enable_language_server": true
},
"JavaScript": {
"enable_language_server": true,
"code_actions_on_format": {
"source.fixAll.eslint": true
}
},
"Lua": {
"enable_language_server": true,
"tab_size": 2
}
},
"lsp": {
"eslint": {
"settings": {
"nodePath": "./node_modules/.bin"
}
},
"gopls": {
"initialization_options": {
"hints": {
"assignVariableTypes": true,
"compositeLiteralFields": true,
"compositeLiteralTypes": true,
"constantValues": true,
"functionTypeParameters": true,
"parameterNames": true,
"rangeVariableTypes": true
}
}
}
},
"preferred_line_length": 100,
"format_on_save": "on",
"vim_mode": true,
"theme": {
"mode": "system",
"light": "Tokyo Night Light",
"dark": "Tokyo Night Storm"
},
"inlay_hints": {
"enabled": true,
"show_type_hints": true,
"show_parameter_hints": true,
"show_other_hints": true
},
"ui_font_size": 16,
"buffer_font_size": 16,
"buffer_font_fallbacks": ["JetBrainsMono Nerd Font"],
"edit_predictions": {
"disabled_globs": [".env", ".env.*"]
},
"hour_format": "hour24"
}