Skip to content

Commit 4f20f33

Browse files
authored
Merge branch 'nvim-lua:master' into master
2 parents 87ff8a4 + 60b93c9 commit 4f20f33

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ If you would prefer to hide this step and run the plugin sync from the command l
7171
nvim --headless "+Lazy! sync" +qa
7272
```
7373

74-
### Introduction
74+
### Getting Started
7575

76-
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.
76+
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.
7777

7878
### Recommended Steps
7979

init.lua

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,14 @@ vim.defer_fn(function()
427427

428428
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
429429
auto_install = false,
430-
430+
-- Autoinstall languages that are not installed. Defaults to false (but you can change for yourself!)
431+
auto_install = false,
432+
-- Install languages synchronously (only applied to `ensure_installed`)
433+
sync_install = false,
434+
-- List of parsers to ignore installing
435+
ignore_install = {},
436+
-- You can specify additional Treesitter modules here: -- For example: -- playground = {--enable = true,-- },
437+
modules = {},
431438
highlight = { enable = true },
432439
indent = { enable = true },
433440
incremental_selection = {

0 commit comments

Comments
 (0)