11 lines
179 B
Lua
11 lines
179 B
Lua
if not vim.fn.executable("nu") then
|
|
return
|
|
end
|
|
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
dependencies = {
|
|
{ "nushell/tree-sitter-nu" },
|
|
},
|
|
build = ":TSUpdate",
|
|
}
|