18 lines
314 B
Lua
18 lines
314 B
Lua
-- https://github.com/tadachs/ros-nvim
|
|
--- @module "lazy"
|
|
--- @type LazySpec
|
|
return {
|
|
"tadachs/ros-nvim",
|
|
event = { "BufRead", "BufNewFile" },
|
|
opts = {
|
|
commands = {
|
|
enabled = false,
|
|
},
|
|
},
|
|
build = ":TSInstall ros",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-treesitter/nvim-treesitter",
|
|
},
|
|
}
|