Add a filesystem paths nvim-cmp source

This commit is contained in:
Kevin MacMartin 2024-03-05 12:07:58 -05:00
parent 2d5339fffd
commit 806e7c5385
4 changed files with 6 additions and 0 deletions

3
.gitmodules vendored
View file

@ -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

View file

@ -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

@ -0,0 +1 @@
Subproject commit 6eeaf0f3968ea1e6f135a5ee5aa01828f66611a5

View file

@ -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" },
}),