mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
## Description Since the nushell treesitter parser is now upstream, as seen in [this pr](https://github.com/nvim-treesitter/nvim-treesitter/pull/7267), it updates the treesitter config of this extra ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines. Co-authored-by: Conarius <Conarius+34580743@users.noreply.github.com>
17 lines
248 B
Lua
17 lines
248 B
Lua
return {
|
|
recommended = {
|
|
ft = "nu",
|
|
},
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
nushell = {},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = { ensure_installed = { "nu" } },
|
|
},
|
|
}
|