tangled
alpha
login
or
join now
sharparam.com
/
dotfiles
0
fork
atom
this repo has no description
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
[zed] Add basic config
sharparam.com
10 months ago
caf6bc94
647cca5f
verified
This commit was signed with the committer's
known signature
.
sharparam.com
SSH Key Fingerprint:
SHA256:ovycjIBhBAebccGBKsv/qU55pv3EyICepNWb1VhblYk=
+25
1 changed file
expand all
collapse all
unified
split
zed
.config
zed
settings.json
+25
zed/.config/zed/settings.json
···
1
1
+
// Zed settings
2
2
+
//
3
3
+
// For information on how to configure Zed, see the Zed
4
4
+
// documentation: https://zed.dev/docs/configuring-zed
5
5
+
//
6
6
+
// To see all of Zed's default settings without changing your
7
7
+
// custom settings, run `zed: open default settings` from the
8
8
+
// command palette (cmd-shift-p / ctrl-shift-p)
9
9
+
{
10
10
+
"features": {
11
11
+
"edit_prediction_provider": "zed"
12
12
+
},
13
13
+
"icon_theme": "Catppuccin Macchiato",
14
14
+
"vim_mode": true,
15
15
+
"base_keymap": "VSCode",
16
16
+
// "ui_font_family": "Iosevka Aile",
17
17
+
"ui_font_size": 16,
18
18
+
"buffer_font_family": "Iosevka Sharpie",
19
19
+
"buffer_font_size": 16,
20
20
+
"theme": {
21
21
+
"mode": "system",
22
22
+
"light": "Catppuccin Latte",
23
23
+
"dark": "Catppuccin Macchiato"
24
24
+
}
25
25
+
}