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:
And apply the following configuration in the settings.json
file (you can access it by pressing Ctrl + ,
or Cmd + ,
on a Mac):
{
// 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"
]
}
}
}
}
}
}
Description
Languages
TeX
100%