Created
March 10, 2025 13:07
-
-
Save padenot/0e42f1ef9116fe5cf1ba78f35c889bd6 to your computer and use it in GitHub Desktop.
padenot's settings.json for Zed
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 | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
"theme": "NeoSolarized Dark", | |
"assistant": { | |
"default_model": { | |
"provider": "ollama", | |
"model": "codestral:latest" | |
}, | |
"version": "2" | |
}, | |
"excluded_patterns": ["obj-*"], | |
"ssh_connections": [ | |
{ | |
"host": "100.116.52.44", | |
"username": "padenot", | |
"projects": [ | |
{ | |
"paths": ["~/src/repositories/cubeb"] | |
}, | |
{ | |
"paths": ["~/src/trees/mozilla-mobile"] | |
}, | |
{ | |
"paths": ["~/src/trees/mozilla-unified"] | |
}, | |
{ | |
"paths": ["~/src/trees/mozilla-unified-2"] | |
} | |
], | |
"nickname": "padenot-box" | |
} | |
], | |
"vim_mode": true, | |
"ui_font_size": 16, | |
"buffer_font_size": 17.0, | |
"autosave": "on_focus_change", | |
"buffer_font_family": "Berkeley Mono", | |
"centered_layout": { | |
"left_padding": 0.2, | |
"right_padding": 0.2 | |
}, | |
"current_line_highlight": "line", | |
"scrollbar": { | |
"show": "always" | |
}, | |
"tab_size": 2, | |
"tabs": { | |
"close_position": "left", | |
"git_status": true | |
}, | |
"lsp": { | |
"rust-analyzer": { | |
"initialization_options": { | |
"check": { | |
"command": "clippy" // rust-analyzer.check.command (default: "check") | |
} | |
} | |
}, | |
"clangd": { | |
"binary": { | |
"path": "/Users/padenot/.mozbuild/clang-tools/clang-tidy/bin/clangd", | |
"arguments": [ | |
"-j 6", | |
"--background-index", | |
"--clang-tidy", | |
"--background-index-priority=background" | |
] | |
} | |
} | |
}, | |
"file_types": { | |
"HTML": ["bs"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment