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:
@ -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 = {
|
||||
|
Reference in New Issue
Block a user