From 1ff53112ae49ba65d007b1a09bbe48b613def568 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Tue, 27 May 2025 17:21:20 +0200 Subject: [PATCH] Added ros plugin --- nvim/dot-config/nvim/lazy-lock.json | 1 + nvim/dot-config/nvim/lua/plugins/ros.lua | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 nvim/dot-config/nvim/lua/plugins/ros.lua diff --git a/nvim/dot-config/nvim/lazy-lock.json b/nvim/dot-config/nvim/lazy-lock.json index c816c07..ed36396 100644 --- a/nvim/dot-config/nvim/lazy-lock.json +++ b/nvim/dot-config/nvim/lazy-lock.json @@ -34,6 +34,7 @@ "nvim-ts-autotag": { "branch": "main", "commit": "a1d526af391f6aebb25a8795cbc05351ed3620b5" }, "peek.nvim": { "branch": "master", "commit": "5820d937d5414baea5f586dc2a3d912a74636e5b" }, "plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" }, + "ros-nvim": { "branch": "main", "commit": "f0e16eebe68546025784593fa2355ca6749014a0" }, "schemastore.nvim": { "branch": "main", "commit": "0098dde21296a454ae1426f9ac47340dd38c27ce" }, "smart-splits.nvim": { "branch": "master", "commit": "5ef94ca23b28148187846fc46f10184aad4d17b0" }, "telescope-fzf-native.nvim": { "branch": "main", "commit": "1f08ed60cafc8f6168b72b80be2b2ea149813e55" }, diff --git a/nvim/dot-config/nvim/lua/plugins/ros.lua b/nvim/dot-config/nvim/lua/plugins/ros.lua new file mode 100644 index 0000000..54ab0c5 --- /dev/null +++ b/nvim/dot-config/nvim/lua/plugins/ros.lua @@ -0,0 +1,12 @@ +return { + "tadachs/ros-nvim", + opts = { + only_workspace = true, + }, + build = ":TSInstall ros", + dependencies = { + "nvim-lua/plenary.nvim", + "nvim-treesitter/nvim-treesitter", + "nvim-telescope/telescope.nvim", + }, +}