Fish shell completion source for nvim-cmp.
require("packer").use({ "mtoohey31/cmp-fish", ft = "fish" })
cmp.setup({
sources = cmp.config.sources({
{ name = 'fish' }
})
})
You can provide a custom Fish path using options:
cmp.setup({
sources = cmp.config.sources({
{ name = 'fish', option = { fish_path = "/usr/bin/fish" } }
})
})