Disable warnings and mcp-hub

This commit is contained in:
Ducky SSH User
2025-12-06 08:07:02 +00:00
parent a8245b6783
commit 897d1e8d7b
2 changed files with 15 additions and 13 deletions

View File

@@ -1,6 +1,8 @@
return {
'olimorris/codecompanion.nvim',
opts = {},
opts = {
ignore_warnings = true,
},
dependencies = {
'nvim-lua/plenary.nvim',
'nvim-treesitter/nvim-treesitter',

View File

@@ -1,14 +1,14 @@
return {
'ravitemer/mcphub.nvim',
dependencies = {
'nvim-lua/plenary.nvim', -- Required for Job and HTTP requests
},
-- uncomment the following line to load hub lazily
--cmd = "MCPHub", -- lazy load
build = 'npm install -g mcp-hub@latest', -- Installs required mcp-hub npm module
-- uncomment this if you don't want mcp-hub to be available globally or can't use -g
-- build = "bundled_build.lua", -- Use this and set use_bundled_binary = true in opts (see Advanced configuration)
config = function()
require('mcphub').setup()
end,
-- 'ravitemer/mcphub.nvim',
-- dependencies = {
-- 'nvim-lua/plenary.nvim', -- Required for Job and HTTP requests
-- },
-- -- uncomment the following line to load hub lazily
-- --cmd = "MCPHub", -- lazy load
-- build = 'npm install -g mcp-hub@latest', -- Installs required mcp-hub npm module
-- -- uncomment this if you don't want mcp-hub to be available globally or can't use -g
-- -- build = "bundled_build.lua", -- Use this and set use_bundled_binary = true in opts (see Advanced configuration)
-- config = function()
-- require('mcphub').setup()
-- end,
}