add zed dotfiles

This commit is contained in:
2025-06-14 10:14:19 -06:00
parent 39976567ed
commit 4bcd55c0b1
3 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
// 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)
{
"base_keymap": "VSCode",
"agent": {
"model_parameters": [],
"default_model": {
"provider": "zed.dev",
"model": "claude-sonnet-4"
},
"version": "2"
},
"vim_mode": true,
"vim": {
"enable_vim_sneak": true
},
"relative_line_numbers": true,
"ui_font_size": 16,
"buffer_font_size": 16,
"file_finder": {
"modal_width": "medium"
},
"tab_bar": {
"show": true,
"style": "default"
},
"tabs": {
"show_diagnostics": "errors"
},
"indent_guides": {
"enabled": true,
"coloring": "indent_aware"
},
"inlay_hints": {
"enabled": true
},
"terminal": {
"env": {
"EDITOR": "zed --wait"
}
},
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Catppuccin Mocha"
},
"icon_theme": "Catppuccin Macchiato",
"file_scan_exclusions": [
"**/.git",
"**/.svn",
"**/.hg",
"**/CVS",
"**/.DS_Store",
"**/Thumbs.db",
"**/.classpath",
"**/.settings",
// above is default from Zed
"**/out",
"**/dist",
"**/.husky",
"**/.turbo",
"**/.vscode-test",
"**/.vscode",
"**/.next",
"**/.storybook",
"**/.tap",
"**/.nyc_output",
"**/report",
"**/node_modules"
]
}