Skip to content

Instantly share code, notes, and snippets.

@kubukoz
Last active May 10, 2025 22:34
Show Gist options
  • Save kubukoz/6548a53e545e0ffce3d607bbacb85c2b to your computer and use it in GitHub Desktop.
Save kubukoz/6548a53e545e0ffce3d607bbacb85c2b to your computer and use it in GitHub Desktop.
Zed theme
// 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": "One Dark Pro",
// these are for onedark prod
"experimental.theme_overrides": {
// https://github.com/tree-sitter/tree-sitter-scala/blob/master/queries/highlights.scm
// https://github.com/joshdick/onedark.vim/blob/main/colors/onedark.vim
"syntax": {
"variable": {
// yellow
"color": "#e5c07b"
},
"property": {
// white
"color": "#abb2bf"
},
"method": {
// yellow
"color": "#e5c07b"
},
"function.call": {
// white
"color": "#abb2bf"
},
"method.call": {
// white
"color": "#abb2bf"
},
"type": {
// blue
"color": "#61afef"
},
"parameter": {
// yellow
"color": "#e5c07b"
},
"type.qualifier": {
// magenta
"color": "#c678dd"
},
"include": {
// magenta
"color": "#c678dd"
},
"conditional": {
// magenta
"color": "#c678dd"
},
"repeat": {
// magenta
"color": "#c678dd"
}
}
},
"buffer_font_family": "JetBrains Mono",
"buffer_font_features": {
// ligatures
"calt": false
},
"buffer_font_size": 15,
"terminal": {
"font_family": "MesloLGS NF"
},
"languages": {
"Nix": {
"formatter": {
"external": {
"command": "nixfmt"
}
}
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment