diff --git a/lua/astrocommunity/utility/telescope-fzy-native-nvim/README.md b/lua/astrocommunity/utility/telescope-fzy-native-nvim/README.md new file mode 100644 index 000000000..5929d0fa1 --- /dev/null +++ b/lua/astrocommunity/utility/telescope-fzy-native-nvim/README.md @@ -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:** + diff --git a/lua/astrocommunity/utility/telescope-fzy-native-nvim/init.lua b/lua/astrocommunity/utility/telescope-fzy-native-nvim/init.lua new file mode 100644 index 000000000..910b02c6d --- /dev/null +++ b/lua/astrocommunity/utility/telescope-fzy-native-nvim/init.lua @@ -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, +}