commit
						84a6b218fe
					
				| 
						 | 
					@ -71,9 +71,9 @@ If you would prefer to hide this step and run the plugin sync from the command l
 | 
				
			||||||
nvim --headless "+Lazy! sync" +qa
 | 
					nvim --headless "+Lazy! sync" +qa
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Introduction
 | 
					### Getting Started
 | 
				
			||||||
 | 
					
 | 
				
			||||||
To get started, see [Effective Neovim: Instant IDE](https://youtu.be/stqUbv-5u2s), covering the previous version. Note: The install via init.lua is outdated, please follow the install instructions in this file instead. An updated video is coming soon.
 | 
					See [Effective Neovim: Instant IDE](https://youtu.be/stqUbv-5u2s), covering the previous version. Note: The install via init.lua is outdated, please follow the install instructions in this file instead. An updated video is coming soon.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Recommended Steps
 | 
					### Recommended Steps
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										7
									
								
								init.lua
								
								
								
								
							
							
						
						
									
										7
									
								
								init.lua
								
								
								
								
							| 
						 | 
					@ -427,7 +427,12 @@ vim.defer_fn(function()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
 | 
					    -- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
 | 
				
			||||||
    auto_install = false,
 | 
					    auto_install = false,
 | 
				
			||||||
 | 
					    -- Install languages synchronously (only applied to `ensure_installed`)
 | 
				
			||||||
 | 
					    sync_install = false,
 | 
				
			||||||
 | 
					    -- List of parsers to ignore installing
 | 
				
			||||||
 | 
					    ignore_install = {},
 | 
				
			||||||
 | 
					    -- You can specify additional Treesitter modules here: -- For example: -- playground = {--enable = true,-- },
 | 
				
			||||||
 | 
					    modules = {},
 | 
				
			||||||
    highlight = { enable = true },
 | 
					    highlight = { enable = true },
 | 
				
			||||||
    indent = { enable = true },
 | 
					    indent = { enable = true },
 | 
				
			||||||
    incremental_selection = {
 | 
					    incremental_selection = {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue