Last active
January 24, 2025 10:06
-
-
Save comtom/7b2a5076c4f3e503fb338ccfe6020e64 to your computer and use it in GitHub Desktop.
zed config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"assistant": { | |
"default_model": { | |
"provider": "ollama", | |
"model": "qwen2.5:7b" | |
}, | |
"version": "2" | |
}, | |
"languages": { | |
"Python": { | |
"show_inline_completions": true, | |
"language_servers": ["pyright", "ruff"], | |
"format_on_save": "on", | |
"formatter": [ | |
{ | |
"code_actions": { | |
"source.organizeImports.ruff": true, | |
"source.fixAll.ruff": true | |
} | |
}, | |
{ | |
"language_server": { | |
"name": "ruff" | |
} | |
} | |
] | |
} | |
}, | |
"ui_font_size": 14, | |
"buffer_font_size": 14, | |
"terminal": { | |
"font_size": 14, | |
"font_family": "Cousine for Powerline" | |
}, | |
"theme": { | |
"mode": "system", | |
"light": "One Light", | |
"dark": "Yogi Amoled" | |
}, | |
"features": { | |
"inline_completion_provider": "supermaven" | |
}, | |
"git": { | |
"git_gutter": "tracked_files", | |
"inline_blame": { | |
"enabled": true | |
} | |
}, | |
"telemetry": { | |
"diagnostics": false, | |
"metrics": false | |
}, | |
"lsp": { | |
"gopls": { | |
"initialization_options": { | |
"hints": { | |
"assignVariableTypes": true, | |
"compositeLiteralFields": true, | |
"compositeLiteralTypes": true, | |
"constantValues": true, | |
"functionTypeParameters": true, | |
"parameterNames": true, | |
"rangeVariableTypes": true | |
} | |
} | |
}, | |
"lsp": { | |
"pyright": { | |
"settings": { | |
"python.analysis": { | |
"diagnosticMode": "off", | |
"typeCheckingMode": "off" | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment