This commit is contained in:
Lian Drake 2024-08-02 13:25:02 -04:00
parent 24d8ba7352
commit d68cdf8c28

33
.config/zed/settings.json Normal file
View file

@ -0,0 +1,33 @@
// 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 `zed: Open Default Settings` command
// from the command palette
{
"base_keymap": "VSCode",
"telemetry": {
"diagnostics": false,
"metrics": false
},
"vim_mode": true,
"ui_font_size": 16,
"buffer_font_size": 16,
"ui_font_family": "Inter",
"buffer_font_family": "Mononoki Nerd Font",
"preferred_line_length": 80,
"soft_wrap": "preferred_line_length",
"theme": {
"mode": "dark",
"light": "Catppuccin Latte",
"dark": "Catppuccin Mocha"
},
"terminal": {
"shell": {
"program": "fish"
},
"blinking": "on"
}
}