Home

Awesome

<!-- cSpell:ignore nvim -->

cmp-fish

Fish shell completion source for nvim-cmp.

Usage

require("packer").use({ "mtoohey31/cmp-fish", ft = "fish" })

cmp.setup({
  sources = cmp.config.sources({
    { name = 'fish' }
  })
})

Configuration

You can provide a custom Fish path using options:

cmp.setup({
  sources = cmp.config.sources({
    { name = 'fish', option = { fish_path = "/usr/bin/fish" } }
  })
})