mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Add a filesystem paths nvim-cmp source
This commit is contained in:
parent
2d5339fffd
commit
806e7c5385
4 changed files with 6 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -88,3 +88,6 @@
|
|||
[submodule "vim/bundle/cmp-omni"]
|
||||
path = vim/bundle/cmp-omni
|
||||
url = https://github.com/hrsh7th/cmp-omni
|
||||
[submodule "vim/bundle/cmp-async-path"]
|
||||
path = vim/bundle/cmp-async-path
|
||||
url = https://codeberg.org/FelipeLema/cmp-async-path
|
||||
|
|
|
@ -121,6 +121,7 @@ For a complete list of mappings specific to **darkcloud-nvimconfig**, check the
|
|||
* [lightline.vim](https://github.com/itchyny/lightline.vim): A light and configurable statusline/tabline for Vim
|
||||
* [lightline-ale](https://github.com/maximbaz/lightline-ale): Provides ALE indicator for the lightline vim plugin
|
||||
* [nvim-cmp](https://github.com/hrsh7th/nvim-cmp): A completion engine plugin for neovim written in Lua
|
||||
* [cmp-async-path](https://codeberg.org/FelipeLema/cmp-async-path): Async filesystem path source for nvim-cmp
|
||||
* [cmp-buffer](https://github.com/hrsh7th/cmp-buffer): Buffer words source for nvim-cmp
|
||||
* [cmp-nvim-tags](https://github.com/quangnguyen30192/cmp-nvim-tags): Tags source for nvim-cmp
|
||||
* [cmp-omni](https://github.com/hrsh7th/cmp-omni): Omnifunc source for cmp-nvim
|
||||
|
|
1
vim/bundle/cmp-async-path
Submodule
1
vim/bundle/cmp-async-path
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 6eeaf0f3968ea1e6f135a5ee5aa01828f66611a5
|
|
@ -51,6 +51,7 @@ if (vim.g.enablecompletion == 1) then
|
|||
{ name = "buffer" },
|
||||
{ name = "treesitter" },
|
||||
{ name = "omni" },
|
||||
{ name = "async_path" },
|
||||
{ name = "tags", option = { current_buffer_only = true } },
|
||||
{ name = "snippy" },
|
||||
}),
|
||||
|
|
Loading…
Reference in a new issue