Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pschmitt/cmp-brotab
Brotab completion for nvim-cmp
https://github.com/pschmitt/cmp-brotab
brotab browser neovim nvim nvim-cmp
Last synced: about 1 month ago
JSON representation
Brotab completion for nvim-cmp
- Host: GitHub
- URL: https://github.com/pschmitt/cmp-brotab
- Owner: pschmitt
- License: gpl-3.0
- Created: 2022-05-05T07:02:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-23T17:03:27.000Z (11 months ago)
- Last Synced: 2024-05-17T00:11:22.673Z (6 months ago)
- Topics: brotab, browser, neovim, nvim, nvim-cmp
- Language: Lua
- Homepage:
- Size: 13.7 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cmp-brotab
Browser tab content content completion for
[nvim-cmp](https://github.com/hrsh7th/nvim-cmp).# Requirements
- [neovim](https://github.com/neovim/neovim)
- [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)
- [BroTab](https://github.com/balta2ar/brotab)# Installation (packer.nvim)
```lua
use {
'pschmitt/cmp-brotab',
requires = "hrsh7th/nvim-cmp",
}
```# Configuration
```lua
require('cmp').setup({
sources = {
{ name = 'brotab' }
}
})
```# LunarVim Configuration
```lua
lvim.plugins = {
{
"pschmitt/cmp-brotab"
requires = "hrsh7th/nvim-cmp",
event = "InsertEnter",
setup = function()
table.insert(lvim.builtin.cmp.sources, { name = "brotab" })
lvim.builtin.cmp.formatting.source_names.brotab = "(BROTAB)"
end
},
}
```lua