mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
feat(config)!: remove ignore_install
This was only useful for no longer supported `auto_install` option.
This commit is contained in:
parent
864e75a85d
commit
b0a20057b0
4 changed files with 3 additions and 25 deletions
|
|
@ -26,8 +26,6 @@ To configure `nvim-treesitter`, put this in your `init.lua` file:
|
|||
-- A directory to install the parsers and queries to.
|
||||
-- Defaults to the `stdpath('data')/site` dir.
|
||||
install_dir = "/some/path/to/store/parsers",
|
||||
-- List of parsers to ignore installing (for "stable" etc.)
|
||||
ignore_install = { "some_parser" },
|
||||
}
|
||||
|
||||
NOTE: You do not need to call `setup` to use this plugin with the default
|
||||
|
|
@ -103,10 +101,6 @@ setup({opts}) *nvim-treesitter.setup()*
|
|||
• {install_dir} (`string?`, default `stdpath('data')/site/`)
|
||||
directory to install parsers and queries to. Note: will be
|
||||
appended to |runtimepath|.
|
||||
• {ignore_install} (`string[]?`) list of languages to never
|
||||
install even if specified for an installation operation.
|
||||
(Useful when specifying tiers instead of individual
|
||||
languages.)
|
||||
|
||||
install({languages}, {opts}, {callback}) *nvim-treesitter.install()*
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue