Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sudo-burger/cmp-org-roam
nvim-cmp source for org-roam.nvim nodes.
https://github.com/sudo-burger/cmp-org-roam
neovim neovim-plugin nvim nvim-cmp org-mode orgmode orgmode-nvim
Last synced: 19 days ago
JSON representation
nvim-cmp source for org-roam.nvim nodes.
- Host: GitHub
- URL: https://github.com/sudo-burger/cmp-org-roam
- Owner: sudo-burger
- Created: 2024-07-25T13:41:03.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-08-05T17:23:02.000Z (6 months ago)
- Last Synced: 2024-11-16T00:45:00.891Z (3 months ago)
- Topics: neovim, neovim-plugin, nvim, nvim-cmp, org-mode, orgmode, orgmode-nvim
- Language: Lua
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cmp-org-roam
nvim-cmp source for [org-roam.nvim](https://github.com/chipsenkbeil/org-roam.nvim) nodes.
# Setup
None needed.
## Configuration
After installing the package, just add 'org_roam' to the the list of nvim-cmp sources.
Suggested lazy.nvim configuration:
```lua
return {
'hrsh7th/nvim-cmp',
event = 'InsertEnter',
dependencies = {
{ 'sudo-burger/cmp-org-roam', dependencies = { 'chipsenkbeil/org-roam.nvim' } },
},
config = function()
cmp = require('cmp')
cmp.setup.filetype('org', {
sources = cmp.config.sources {
{ name = 'org_roam' },
},
})
end,
}
```