2024-05-05 19:39:35 +02:00
|
|
|
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
2023-08-29 07:40:57 +02:00
|
|
|
# Deprecation notice added 2023/08/29
|
|
|
|
# TODO: remove (along with this file) in early November 2023.
|
|
|
|
imports = [
|
2024-05-05 19:39:35 +02:00
|
|
|
(mkRemovedOptionModule
|
|
|
|
[
|
|
|
|
"plugins"
|
|
|
|
"treesitter-playground"
|
|
|
|
]
|
2023-08-29 07:40:57 +02:00
|
|
|
''
|
|
|
|
The `treesitter-playground` plugin has been deprecated since the functionality is included in Neovim.
|
|
|
|
Use:
|
|
|
|
- `:Inspect` to show the highlight groups under the cursor
|
|
|
|
- `:InspectTree` to show the parsed syntax tree ("TSPlayground")
|
|
|
|
- `:PreviewQuery` to open the Query Editor (Nvim 0.10+)
|
|
|
|
''
|
|
|
|
)
|
|
|
|
];
|
2023-04-05 13:34:20 +02:00
|
|
|
}
|