feat: 🎉 Create all the basics file for the template
This commit is contained in:
35
README.md
Normal file
35
README.md
Normal file
@ -0,0 +1,35 @@
|
||||
# LaTeX document template with Zed IDE
|
||||
This repository template contains all the necessary files to start writing a LaTeX document with the ZED IDE.
|
||||
|
||||
## Zed IDE configuration
|
||||
In order to make this template work with the Zed IDE, you need to install the following plugins:
|
||||
- [LaTeX](https://github.com/rzukic/zed-latex)
|
||||
|
||||
And apply the following configuration in the `settings.json` file (you can access it by pressing `Ctrl + ,` or `Cmd + ,` on a Mac):
|
||||
```json
|
||||
{
|
||||
// Other settings...
|
||||
"lsp": {
|
||||
"texlab": {
|
||||
"settings": {
|
||||
"texlab": {
|
||||
"build": {
|
||||
"onSave": true,
|
||||
"forwardSearchAfter": true
|
||||
},
|
||||
"forwardSearch": {
|
||||
"executable": "zathura",
|
||||
"args": [
|
||||
"--synctex-forward",
|
||||
"%l:1:%f",
|
||||
"-x",
|
||||
"zed %%{input}:%%{line}",
|
||||
"%p"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
Reference in New Issue
Block a user