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

feat(utility): Add telescope-fzy-native.nvim #398

Merged
merged 2 commits into from
Jul 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# telescope-fzy-native.nvim

FZY style sorter that is compiled

Dependencies:
* It is possible that you will already have a compiled binary matching your system. You can find out information about compiling the binary at the implementation repo: https://github.com/romgrk/fzy-lua-native

**Repository:** <https://github.com/nvim-telescope/telescope-fzy-native.nvim>

9 changes: 9 additions & 0 deletions lua/astrocommunity/utility/telescope-fzy-native-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
return {
{ "nvim-telescope/telescope-fzy-native.nvim" },
{
"nvim-telescope/telescope.nvim",
optional = true,
dependencies = { "telescope_dap" },
opts = function() require("telescope").load_extension "fzy_native" end,
},
}
Uzaaft marked this conversation as resolved.
Show resolved Hide resolved