Skip to content

Instantly share code, notes, and snippets.

@theghostmac
Created October 24, 2024 15:45
Show Gist options
  • Save theghostmac/d98b52836f6f014f0173f8d39c79a19a to your computer and use it in GitHub Desktop.
Save theghostmac/d98b52836f6f014f0173f8d39c79a19a to your computer and use it in GitHub Desktop.
my configurations for my Zed IDE
// 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.
{
"buffer_font_size": 15,
// autosaves by Mac.
"autosave": {
"after_delay": {
"milliseconds": 1000
}
},
"auto_update": true,
"lsp": {
"wakatime": {
"settings": {
"api-key": "waka_de6164f9-52fa-443a-9099-ce78a4fe9172"
}
}
},
"ensure_final_newline_on_save": false,
"hard_tabs": false,
"editor.autoIndent": "none",
// ask whether Mac wants to quit.
"confirm_quit": true,
"enable_language_server": true,
"formatter": "language_server",
"git": {
"git_gutter": "tracked_files",
"inline_blame": {
"enabled": true
}
},
"git_diff": true,
"selected_symbol": true,
// something might break, lol.
"shell": "system",
"base_keymap": "JetBrains",
"terminal": {
"font_family": "Iosevka Fixed",
"font_features": {
"calt": true
}
},
"theme": {
"mode": "system",
"light": "Catppuccin Latte (Blur)",
"dark": "Catppuccin Espresso (Blur)"
},
"experimental.theme_overrides": {
"syntax": {
"comment": {
"font_style": "italic"
}
}
},
"inline_completions": {
"disabled_globs": [
".env"
]
},
"current_line_highlight": "gutter",
"format_on_save": "on"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment