Skip to content
This repository has been archived by the owner on May 17, 2023. It is now read-only.

Latest commit

 

History

History
19 lines (18 loc) · 403 Bytes

README.md

File metadata and controls

19 lines (18 loc) · 403 Bytes

cmp-eclim

nvim-cmp source for Eclim.

Config

In your init.lua:

local cmp = require'cmp'
require'cmp'.setup {
  sources = {
    {
      name = 'eclim',
      keyword_length = 3, -- only trigger completion after 3 characters,
                          -- otherwise there'll be many irrelevant items
    },
    ...
  },
  ...
}