36 lines
		
	
	
		
			940 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			940 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # 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"
 | |
|             ]
 | |
|           }
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }
 | |
| ```
 |