-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.zed.json
104 lines (104 loc) · 2.6 KB
/
.zed.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// 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.
//
// Use this for deno on a project basis
// {
// "languages": {
// "TypeScript": {
// "language_servers": ["deno", "!typescript-language-server", "!vtsls", "!eslint", "..."]
// },
// "TSX": {
// "language_servers": ["deno", "!typescript-language-server", "!vtsls", "!eslint", "..."]
// }
// }
// }
//
{
"theme": {
"mode": "light",
// "light": "One Light",
"light": "Catppuccin Latte - No Italics",
// "dark": "One Dark"
"dark": "Catppuccin Mocha"
},
// "ui_font_family": "Zed Sans",
"ui_font_family": "Zed Plex Sans",
// "ui_font_family": "IBM Plex Sans",
// "ui_font_family": "MesloLGS Nerd Font",
"ui_font_size": 15,
// "buffer_font_family": "IBM Plex Mono",
// "buffer_font_family": "Zed Mono",
"buffer_font_family": "Zed Plex Mono",
// "buffer_font_family": "Berkeley Mono Trial",
// "buffer_font_family": "MesloLGS Nerd Font Mono",
"buffer_font_size": 14,
"buffer_font_features": {
"calt": false,
"clig": false
},
"autosave": "on_focus_change",
"preferred_line_length": 100,
"wrap_guides": [80, 100],
"soft_wrap": "editor_width",
"hard_tabs": false,
"remove_trailing_whitespace_on_save": true,
"active_pane_magnification": 1.0,
"vim_mode": false,
"terminal": {
// "font_family": "MesloLGS Nerd Font Mono",
// "font_family": "Zed Plex Mono",
"font_size": 14
},
"tabs": {
"git_status": true
},
"project_panel": {
"button": true,
"dock": "left",
"git_status": true,
"default_width": 250
},
"languages": {
"Plain Text": {},
"Make": {
"hard_tabs": true,
"tab_size": 4
},
"SQL": {
"formatter": "prettier"
},
"TypeScript": {
"code_actions_on_format": {
"source.organizeImports": true,
"source.sortImports": false,
"source.fixAll.eslint": false
}
},
"TSX": {
"code_actions_on_format": {
"source.organizeImports": true,
"source.sortImports": false,
"source.fixAll.eslint": true
}
},
"JavaScript": {
"code_actions_on_format": {
"source.organizeImports": true,
"source.fixAll.eslint": true
}
},
"JSON": {
"prettier": {
"allowed": true,
"parser": "json"
}
}
},
"show_inline_completions": true
}