-
Notifications
You must be signed in to change notification settings - Fork 0
/
Readme.md.liquid
69 lines (45 loc) · 1.6 KB
/
Readme.md.liquid
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
# {{plugin_name}}
{{description}}
## Overview
This is a {{plugin_type}} plugin for the Zed editor.
{% if plugin_type == "Language Server" %}
It provides language server functionality for {{language_name}}.
### Features
- Syntax highlighting
- Code completion
- Error diagnostics
{% elsif plugin_type == "Theme" %}
It provides a custom color theme for the Zed editor.
### Features
- Custom color scheme for syntax highlighting
- Themed UI elements
- [Add more theme-specific features]
{% elsif plugin_type == "Slash Command" %}
It adds the `/{{slash_command_name}}` command to Zed.
### Features
- [Describe what the slash command does]
- [Add any additional functionalities]
{% endif %}
## Installation
1. Open Zed
2. Go to Settings > Extensions
3. Click on "Install from URL"
4. Enter the following URL: `https://github.com/{{gh_username}}/{{plugin_id}}`
5. Click "Install"
## Usage
{% if plugin_type == "Language Server" %}
Once installed, this plugin will automatically activate when you open a {{language_name}} file in Zed.
{% elsif plugin_type == "Theme" %}
To use this theme:
1. Go to Settings > Themes
2. Select "{{theme_name}}" from the list of available themes
{% elsif plugin_type == "Slash Command" %}
To use the new slash command:
1. In any Zed editor window, type `/{{slash_command_name}}`
2. Press Enter or select the command from the dropdown
3. [Add any additional usage instructions]
{% endif %}
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
## License
This project is licensed under the {{license}} License - see the [LICENSE](LICENSE) file for details.