Created
August 5, 2024 09:15
-
-
Save limboinf/1a5e1d68814fc933ac230e9cb13a180a to your computer and use it in GitHub Desktop.
My zed settings configuration.
This file contains 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
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// 推荐:https://github.com/jellydn/zed-101-setup | |
{ | |
"language_models": { | |
"anthropic": { | |
"api_url": "https://claude.xxx.workers.dev" | |
} | |
}, | |
"assistant": { | |
"default_model": { | |
"provider": "anthropic", | |
"model": "claude-3-5-sonnet-20240620", | |
"api_url": "https://claude.xxx.workers.dev" | |
}, | |
"version": "2", | |
"provider": null | |
}, | |
"base_keymap": "JetBrains", | |
"telemetry": { | |
"diagnostics": false, | |
"metrics": false | |
}, | |
"vim_mode": true, | |
"ui_font_size": 15, | |
"buffer_font_size": 15, | |
"scrollbar": { | |
"show": "never" | |
}, | |
// Indentation, rainbow indentation | |
"indent_guides": { | |
"enabled": true, | |
"coloring": "indent_aware" | |
}, | |
"theme": "Rosé Pine", | |
"proxy": "http://127.0.0.1:7890" | |
} |
Author
limboinf
commented
Aug 5, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment