-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(utility): Add telescope-fzy-native.nvim (#398)
* feat(utility): Add telescope-fzy-native.nvim * Update lua/astrocommunity/utility/telescope-fzy-native-nvim/init.lua Co-authored-by: Micah Halter <[email protected]> --------- Co-authored-by: Micah Halter <[email protected]>
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
lua/astrocommunity/utility/telescope-fzy-native-nvim/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
5 changes: 5 additions & 0 deletions
5
lua/astrocommunity/utility/telescope-fzy-native-nvim/init.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
return { | ||
"nvim-telescope/telescope.nvim", | ||
dependencies = { "nvim-telescope/telescope-fzy-native.nvim" }, | ||
opts = function() require("telescope").load_extension "fzy_native" end, | ||
} |