.config/nvim/lua/plugins/completion.lua

Sun, 05 Mar 2023 19:32:15 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 05 Mar 2023 19:32:15 -0600
changeset 1064
fcfa295076a8
parent 1056
235dd39d6629
child 1070
72b613de1102
permissions
-rw-r--r--

Apply stylua

return {
  {
    "hrsh7th/nvim-cmp",
    event = "InsertEnter",
    dependencies = {
      "hrsh7th/cmp-buffer",
      "hrsh7th/cmp-calc",
      "hrsh7th/cmp-nvim-lsp",
      "hrsh7th/cmp-nvim-lsp-signature-help",
      "hrsh7th/cmp-nvim-lua",
      "hrsh7th/cmp-omni",
      "hrsh7th/cmp-path",
      "quangnguyen30192/cmp-nvim-tags",
    },
    opts = function()
      local cmp = require("cmp")
      return {
        completion = {
          keyword_length = 3,
        },
        formatting = {
          format = function(entry, vim_item)
            if entry.source.name == "nvim_lsp_signature_help" then
              vim_item.kind = ""
            elseif vim_item.kind == "Text" then
              vim_item.kind = entry.source.name
            end
            return vim_item
          end,
        },
        mapping = cmp.mapping.preset.insert({
          ["<C-b>"] = cmp.mapping.scroll_docs(-4),
          ["<C-f>"] = cmp.mapping.scroll_docs(4),
          ["<Tab>"] = cmp.mapping.select_next_item(),
          ["<S-Tab>"] = cmp.mapping.select_prev_item(),
          ["<C-g>"] = cmp.mapping.abort(),
          ["<Right>"] = cmp.mapping.confirm({ select = true }),
          ["<Space>"] = function(fallback)
            if cmp.visible() then
              cmp.confirm({ select = false }, function()
                vim.api.nvim_feedkeys(" ", "n", false)
              end)
            end
            fallback()
          end,
        }),
        sources = cmp.config.sources({
          { name = "nvim_lsp" },
          { name = "nvim_lsp_signature_help" },
          { name = "nvim_lua" },
          { name = "buffer", option = { keyword_pattern = [[\k\+]] } },
          { name = "path" },
          -- { name = "omni" },
          { name = "tags" },
          { name = "calc" },
        }),
      }
    end,
  },
}

mercurial