Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 697 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 697 Bytes

cmp-browser-source

Browser source for nvim-cmp. (Inspired by coc-browser)

Install

  1. Install Chrome extension from Chrome Store. (source code)

  2. Install this plugin by Packer or Plug.

Setup

require('cmp-browser-source').start_server()

require'cmp'.setup {
    -- other config
    sources = cmp.config.sources({
        -- other source
        { name = 'browser' },
        -- other source
    }),
    -- other config
}