1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-01 18:39:27 +00:00

[neovim] Add MCPHub integration

Enhance snacks plugin configuration by adding:
- MCPHub integration with dedicated menu entry
- Explorer configuration for picker with hidden and ignored files
  enabled
This commit is contained in:
2025-04-05 17:35:11 +02:00
parent 7d01253a29
commit 6408d33eea
8 changed files with 75 additions and 24 deletions

View File

@ -1,7 +1,7 @@
require("blink.cmp").setup({
-- disable completion for certain filetypes
enabled = function()
return not vim.tbl_contains({ "sagarename" }, vim.bo.filetype)
return not vim.tbl_contains({ "sagarename", "DressingIngput" }, vim.bo.filetype)
and vim.bo.buftype ~= "prompt"
and vim.b.completion ~= false
end,
@ -12,7 +12,7 @@ require("blink.cmp").setup({
completion = {
accept = {
auto_brackets = {
enabled = false,
enabled = true,
},
},
documentation = {
@ -36,7 +36,11 @@ require("blink.cmp").setup({
},
},
},
signature = { window = { border = "single" } },
signature = {
window = {
border = "single",
},
},
sources = {
default = { "lsp", "path", "buffer", "copilot" },
providers = {