Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add specs for some more plugins #21

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions lua/nvcommunity/git/git-conflict/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---@type NvPluginSpec
local spec = {
'akinsho/git-conflict.nvim',
dependencies = {
{
'akinsho/git-conflict.nvim',
cmd = {
'GitConflictChooseOurs',
'GitConflictChooseTheirs',
'GitConflictChooseBoth',
'GitConflictChooseNone',
'GitConflictNextConflict',
'GitConflictPrevConflict',
'GitConflictListQf',
},
config = true,
},
}
}

return spec
10 changes: 10 additions & 0 deletions lua/nvcommunity/motion/pounce/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---@type NvPluginSpec
local spec = {
{
"rlane/pounce.nvim",
cmd = { "Pounce", "PounceReg", "PounceExpand", "PounceRepeat" },
opts = {},
},
}

return spec
9 changes: 9 additions & 0 deletions lua/nvcommunity/motion/pounce/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# pounce.nvim

Pounce is a motion plugin similar to [EasyMotion][1], [Sneak][2], [Hop][3], and
[Lightspeed][4]. It's based on incremental fuzzy search.

[1]: https://github.com/easymotion/vim-easymotion
[2]: https://github.com/justinmk/vim-sneak
[3]: https://github.com/phaazon/hop.nvim
[4]: https://github.com/ggandor/lightspeed.nvim
3 changes: 3 additions & 0 deletions lua/nvcommunity/tools/telescope-zf-native/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# telescope-zf-native.nvim

[telescope-zf-native](https://github.com/natecraddock/telescope-zf-native.nvim) is a extenstion for the [Telescope](https://github.com/nvim-telescope/telescope.nvim) which uses a [zf](https://github.com/natecraddock/zf) fuzzy finder. Matches on filenames are prioritized, and the strict path matching feature helps narrow down directory trees with precision.
15 changes: 15 additions & 0 deletions lua/nvcommunity/tools/telescope-zf-native/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---@type NvPluginSpec
local spec = {
{
"nvim-telescope/telescope.nvim",
dependencies = {
{
"natecraddock/telescope-zf-native.nvim",
},
},
opts = {
extensions_list = { "zf-native" },
},
},
}
return spec