mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-05 00:41:44 +05:30
96 lines
2.1 KiB
JSON
96 lines
2.1 KiB
JSON
// 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 `zed: open default settings` from the
|
|
// command palette (cmd-shift-p / ctrl-shift-p)
|
|
|
|
{
|
|
"telemetry": { "diagnostics": false, "metrics": false },
|
|
"assistant": {
|
|
"default_model": {
|
|
"provider": "zed.dev",
|
|
"model": "claude-3-5-sonnet-latest"
|
|
},
|
|
"version": "2"
|
|
},
|
|
"features": {
|
|
"inline_completion_provider": "none"
|
|
},
|
|
|
|
"base_keymap": "VSCode",
|
|
"vim_mode": true,
|
|
|
|
"ui_font_size": 16,
|
|
"buffer_font_size": 18,
|
|
"buffer_font_family": "FuraCode Nerd Font",
|
|
"buffer_line_height": { "custom": 1.5 },
|
|
"tabs": {
|
|
"file_icons": true,
|
|
"git_status": true
|
|
},
|
|
"outline_panel": {
|
|
"indent_size": 15,
|
|
"scrollbar": {
|
|
"show": "auto"
|
|
}
|
|
},
|
|
"project_panel": {
|
|
"indent_size": 15,
|
|
"scrollbar": {
|
|
"show": "auto"
|
|
}
|
|
},
|
|
|
|
"terminal": {
|
|
"font_family": "FuraCode Nerd Font",
|
|
"font_size": 18,
|
|
"copy_on_select": true
|
|
},
|
|
|
|
// "show_whitespaces": "boundary",
|
|
"soft_wrap": "editor_width",
|
|
"tab_size": 4,
|
|
"unnecessary_code_fade": 0.5,
|
|
|
|
"git": {
|
|
"git_gutter": "tracked_files",
|
|
"gutter_debounce": null,
|
|
"inline_blame": {
|
|
"enabled": true,
|
|
"delay_ms": 500
|
|
}
|
|
},
|
|
|
|
"inlay_hints": {
|
|
"enabled": true
|
|
},
|
|
|
|
"journal": {
|
|
"path": "~/Code/",
|
|
"hour_format": "hour24"
|
|
},
|
|
|
|
"file_types": {
|
|
"Shell": ["sh", "bash", "zsh"]
|
|
},
|
|
|
|
// "lsp": {
|
|
// "rust-analyzer": {
|
|
// "initialization_options": {
|
|
// "check": {
|
|
// "command": "clippy"
|
|
// }
|
|
// }
|
|
// }
|
|
// },
|
|
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "One Light",
|
|
"dark": "Github Dark Dimmed"
|
|
}
|
|
}
|