feat: 🎉 Create all the basics file for the template

This commit is contained in:
2024-11-02 16:23:16 +01:00
commit a62dde197b
4 changed files with 373 additions and 0 deletions

35
README.md Normal file
View 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"
]
}
}
}
}
}
}
```